﻿@import url('../../../css2');

:root {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif !important;
    color: #444;
    overflow-x: hidden;
}

a {
    color: #4154f1;
    text-decoration: none;
}

a:hover {
    color: #717ff5;
    text-decoration: none;
}

section {
    padding: 60px 0;
    overflow: hidden;
}

.section-header {
    text-align: center;
    padding-bottom: 40px;
}

.section-header h2 {
    text-transform: uppercase;
    color: #000 !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 35px !important;
    font-weight: 400 !important;
    font-style: normal;
    line-height: 1em;
}

.section-header p {
    margin: 10px 0 0 0;
    padding: 0;
    font-size: 38px;
    line-height: 42px;
    font-weight: 700;
    color: #000;
}

@media (max-width: 768px) {
    .section-header p {
        font-size: 28px;
        line-height: 32px;
    }
}

.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background: #fbbc04;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: #fbbc04;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

.header {
    transition: all 0.5s;
    z-index: 997;
    padding: 20px 0;
}

.header.header-scrolled {
    background: #000;
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(1, 41, 112, 0.1);
}

.header .logo {
    line-height: 0;
}

.header .logo img {
    max-height: 120px !important;
    margin-right: 6px;
    width: 70% !important;
}

.header .logo span {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #012970;
    font-family: Nunito, sans-serif;
    margin-top: 3px;
}

.header.header-scrolled a.nav-link.scrollto {
    color: #fff;
}

.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-family: Nunito, sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar .active,
.navbar .active:focus,
.navbar a:hover,
.navbar li:hover>a {
    color: #fbbc04;
}

.navbar .getstarted {
    background: #d00202;
    padding: 8px 20px;
    margin-left: 30px;
    border-radius: 4px;
    color: #fff;
}

.navbar .getstarted-seo-ppc {
    margin-left: 30px;
    color: #000 !important;
    font-size: 20px;
    font-weight: 700;
    font-family: Inter;
    margin-right: 12px;
}

.navbar .getstarted-seo-ppc img {
    margin-right: 12px;
}

.navbar .icon-seo-ppc {
    background-color: #fbbc04;
    font-size: 25px;
    color: #fff;
    padding: 6px;
    border-radius: 6px;
}

.navbar .getstarted-seo-ppc:hover {
    color: #000;
}

.navbar .getstarted .fa {
    color: #ffc107;
    font-size: 20px;
    margin-right: 4px;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0 0 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 600;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul .active:hover,
.navbar .dropdown ul a:hover,
.navbar .dropdown ul li:hover>a {
    color: #4154f1;
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}

.mobile-nav-toggle {
    color: #012970;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: #fff;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(1, 22, 61, 0.9);
    transition: 0.3s;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    border-radius: 10px;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #012970;
}

.navbar-mobile .active,
.navbar-mobile a:hover,
.navbar-mobile li:hover>a {
    color: #4154f1;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0 0 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul li:hover>a {
    color: #4154f1;
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}

.hero {
    background: url(../img/1.png) top center no-repeat;
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero h1 {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
}

p.empowep {
    color: #fff;
    font-size: 17px;
    font-weight: 500;
}

.hero h2 {
    color: #444;
    margin: 15px 0 0 0;
    font-size: 26px;
}

.hero .btn-get-started {
    margin-top: 30px;
    line-height: 0;
    padding: 22px 40px;
    border-radius: 4px;
    transition: 0.5s;
    color: #fff;
    background: #fbbc04;
}

.hero .btn-get-started span {
    font-family: Nunito, sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    fill: #2c2c2c;
    color: #2c2c2c;
}

.hero .btn-get-started i {
    margin-left: 5px;
    font-size: 18px;
    transition: 0.3s;
}

.hero .btn-get-started:hover i {
    transform: translateX(5px);
}

.hero .hero-img {
    text-align: right;
}

@media (max-width: 991px) {
    .hero {
        height: auto;
        padding: 120px 0 60px 0;
    }

    .hero .hero-img {
        text-align: center;
        margin-top: 80px;
    }

    .hero .hero-img img {
        width: 80%;
    }
}

@media (max-width: 768px) {
    .hero {
        text-align: center;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero h2 {
        font-size: 24px;
    }

    .hero .hero-img img {
        width: 100%;
    }
}

button.aboutsection {
    padding: 0;
    border-radius: 17px;
    background-color: #fff;
    height: 100px;
    line-height: 100px;
    margin: 20px 0;
    text-align: center;
    border: 1px solid #9f9f9f !important;
    width: 100%;
    font-size: 20px;
    font-weight: 600;
}

h4.tabss {
    font-size: 26px;
    line-height: 1;
    color: #000;
    font-weight: 800;
    margin-top: 25px;
    margin-bottom: 15px;
}

button.aboutsection.tab1.active {
    box-shadow: 0 0 53px 0 rgb(0 0 0 / 12%);
    border: none !important;
    border-left: 5px solid #80a127 !important;
}

button.aboutsection.tab2.active {
    box-shadow: 0 0 53px 0 rgb(0 0 0 / 12%);
    border: none !important;
    border-left: 5px solid #80a127 !important;
}

button.aboutsection.tab3.active {
    box-shadow: 0 0 53px 0 rgb(0 0 0 / 12%);
    border: none !important;
    border-left: 5px solid #80a127 !important;
}

section#about {
    background-color: #f3f3f3;
}

.about .content {
    padding: 40px;
}

.about h3 {
    font-size: 14px;
    font-weight: 700;
    color: #4154f1;
    text-transform: uppercase;
}

.about h2 {
    font-size: 24px;
    font-weight: 700;
    color: #012970;
}

.about p {
    margin: 15px 0 30px 0;
    line-height: 24px;
}

.about .btn-read-more {
    line-height: 0;
    padding: 15px 40px;
    border-radius: 4px;
    transition: 0.5s;
    color: #fff;
    background: #4154f1;
    box-shadow: 0 5px 25px rgba(65, 84, 241, 0.3);
}

.about .btn-read-more span {
    font-family: Nunito, sans-serif;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
}

.about .btn-read-more i {
    margin-left: 5px;
    font-size: 18px;
    transition: 0.3s;
}

.about .btn-read-more:hover i {
    transform: translateX(5px);
}

.values .box {
    padding: 30px;
    box-shadow: 0 0 5px rgba(1, 41, 112, 0.08);
    text-align: center;
    transition: 0.3s;
    height: 100%;
}

header.section-header.value p {
    margin: 10px 0 0 0;
    padding: 0;
    font-size: 15px;
    line-height: 42px;
    font-weight: 600;
    color: #383636;
}

header.section-header.value h2 {
    text-transform: uppercase;
    color: #000 !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 45px !important;
    font-weight: 600 !important;
    font-style: normal;
    line-height: 1em;
}

section#values {
    background-image: url(../img/112bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-position-y: 80%;
    background-repeat: no-repeat;
}

@media (max-width: 991px) {
    section#values {
        background: 0 0;
    }

    .col-lg-5.d-flex.flex-column.justify-content-center {
        width: 100% !important;
    }

    h1.backgrounds {
        text-align: center !important;
    }

    .contact .php-email-form {
        background: #fafbff;
        padding: 30px;
        height: 100% !important;
        width: 100% !important;
        border-radius: 24px;
        margin-left: 0 !important;
    }
}

h1.backgrounds.right {
    text-align: left;
}

p.background.right {
    text-align: left;
}

.col-lg-5.d-flex.flex-column.justify-content-center {
    width: 38.666667%;
}

p.background {
    color: #3d3d3d;
    font-family: 'Inter', sans-serif !important;
    font-size: 15px;
    font-weight: 300;
    text-align: right;
    line-height: inherit !important;
    margin: 10px 0 18px;
}

h1.backgrounds {
    color: #000;
    font-family: 'Inter', sans-serif !important;
    font-size: 20px;
    font-weight: 600;
    line-height: 1em;
    text-align: right;
}

.values .box img {
    padding: 30px 50px;
    transition: 0.5s;
    transform: scale(1.1);
}

.values .box h3 {
    font-size: 24px;
    color: #012970;
    font-weight: 700;
    margin-bottom: 18px;
}

.values .box:hover {
    box-shadow: 0 0 30px rgba(1, 41, 112, 0.08);
}

.values .box:hover img {
    transform: scale(1);
}

.features .feature-box {
    padding: 24px 20px;
    box-shadow: 0 0 30px rgba(1, 41, 112, 0.08);
    transition: 0.3s;
    height: 100%;
}

.features .feature-box h3 {
    font-size: 18px;
    color: #012970;
    font-weight: 700;
    margin: 0;
}

.features .feature-box i {
    line-height: 0;
    background: #ecf3ff;
    padding: 4px;
    margin-right: 10px;
    font-size: 24px;
    border-radius: 3px;
    transition: 0.3s;
}

.features .feature-box:hover i {
    background: #4154f1;
    color: #fff;
}

.features .feture-tabs {
    margin-top: 120px;
}

.features .feture-tabs h3 {
    color: #012970;
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .features .feture-tabs h3 {
        font-size: 28px;
    }
}

.features .feture-tabs .nav-pills {
    border-bottom: 1px solid #eee;
}

.features .feture-tabs .nav-link {
    background: 0 0;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 600;
    color: #012970;
    padding: 12px 0;
    margin-right: 25px;
    margin-bottom: -2px;
    border-radius: 0;
}

.features .feture-tabs .nav-link.active {
    color: #4154f1;
    border-bottom: 3px solid #4154f1;
}

.features .feture-tabs .tab-content h4 {
    font-size: 18px;
    margin: 0;
    font-weight: 700;
    color: #012970;
}

.features .feture-tabs .tab-content i {
    font-size: 24px;
    line-height: 0;
    margin-right: 8px;
    color: #4154f1;
}

.features .feature-icons {
    margin-top: 120px;
}

.features .feature-icons h3 {
    color: #012970;
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 20px;
    text-align: center;
}

@media (max-width: 768px) {
    .features .feature-icons h3 {
        font-size: 28px;
    }
}

.features .feature-icons .content .icon-box {
    display: flex;
}

.features .feature-icons .content .icon-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #012970;
}

.features .feature-icons .content .icon-box i {
    font-size: 44px;
    line-height: 44px;
    color: #0245bc;
    margin-right: 15px;
}

.features .feature-icons .content .icon-box p {
    font-size: 15px;
    color: #848484;
}


.footer-2 .footer-logo .img-wrapper img {
    max-width: 120px;
    margin-bottom: 25px;
}

.footer-2 .text-area p {
    color: #636363;
    font-size: 13px;
    font-weight: 400;
    font-family: Inter;
    margin-bottom: 25px;
}

.footer-2 .text-area .fa {
    color: #636363;
    font-size: 24px;
    font-weight: 400;
    margin-right: 18px;
}

.footer .footer-top .footer-links {
    margin-bottom: 30px;
}

.footer-2 .footer-top {
    margin-bottom: 75px;
}

.footer-2 .footer-top .cities-flex {
    padding-left: 50px;
}

.footer-2 .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-2 .footer-top .footer-links h4 {
    text-align: left;
    font-weight: 700;
    font-size: 20px;
    color: #000;
    font-family: Inter;
    margin-bottom: 20px;
}

.footer-2 .footer-top .footer-links ul li {
    padding: 5px 0;
    display: flex;
    align-items: center;
    color: #fff;
}

.footer-2 .footer-top .footer-links ul li a {
    color: #636363;
    font-family: Inter;
    font-weight: 400;
    line-height: 24px;
    font-size: 15px;
}

.footer-2 .footer-top .footer-contact h4 {
    text-align: left;
    font-weight: 700;
    font-size: 20px;
    color: #000;
    font-family: Inter;
    margin-bottom: 20px;
}

.footer-2 .footer-top .footer-contact p {
    line-height: 26px;
    color: #636363;
    font-family: Inter;
    font-weight: 500;
    font-size: 15px;
}

.footer-2 .footer-top .footer-contact .fa {
    margin-right: 18px;
    margin-top: 6px;
    color: #000;
    font-size: 20px;
}

.footer-2 .footer-top .footer-contact .fa-phone {
    margin-right: 18px;
}

.footer-2 .footer-top .footer-contact .fa-envelope {
    margin-right: 18px;
}

.footer-2 .footer-top .footer-contact {
    color: #b9b9b9;
    font-family: poppins;
}

.footer-2 .footer-top .footer-contact .footer-imges img {
    margin-bottom: 24px;
    max-width: 250px;
}

.footer-2 .footer-bottom .footer-quick-link a {
    margin: 0;
    color: #636363;
    font-family: Inter;
    font-weight: 500;
    font-size: 16px;
}

.footer-2 .footer-bottom .footer-quick-link {
    margin-bottom: 18px;
}

.footer-2 .footer-bottom .copyright {
    margin-bottom: 18px;
}

.footer-2 .footer-bottom .copyright h6 {
    font-size: 16px;
    font-family: Inter;
    font-weight: 500;
    color: #636363;
}

.footer-2 .footer-bottom .terms-of-services p {
    font-size: 15px;
    font-family: Inter;
    font-weight: 500;
    color: #636363;
}


.footer .footer-newsletter {
    padding: 50px 0;
    background: #f6f9ff;
    border-top: 1px solid #e1ecff;
}

.footer .footer-newsletter h4 {
    font-size: 24px;
    margin: 0 0 10px 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    color: #012970;
}

.footer .footer-newsletter form {
    margin-top: 20px;
    background: #fff;
    padding: 6px 10px;
    position: relative;
    border-radius: 4px;
    border: 1px solid #e1ecff;
}

.footer .footer-newsletter form input[type="email"] {
    border: 0;
    padding: 8px;
    width: calc(100% - 140px);
}

.footer .footer-newsletter form input[type="submit"] {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: 0;
    background: 0 0;
    font-size: 16px;
    padding: 0 30px;
    margin: 3px;
    background: #4154f1;
    color: #fff;
    transition: 0.3s;
    border-radius: 4px;
}

.footer .footer-newsletter form input[type="submit"]:hover {
    background: #5969f3;
}

.footer .footer-top {
    background-size: contain;
    border-bottom: 1px solid #e1ecff;
    padding: 100px 0 30px;
}

@media (max-width: 992px) {
    .footer .footer-top {
        padding: 100px 0 30px 0;
        background-position: center bottom;
    }
}

.footer .footer-top .footer-info {
    margin-bottom: 30px;
}

.footer .footer-top .footer-info .logo {
    line-height: 0;
    margin-bottom: 15px;
}

.footer .footer-top .footer-info .logo img {
    max-height: 100px;
    margin-right: 6px;
}

.footer .footer-top .footer-info .logo span {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #012970;
    font-family: Nunito, sans-serif;
    margin-top: 3px;
}

.footer .footer-top .footer-info p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: Nunito, sans-serif;
}

.footer .footer-top .social-links a {
    font-size: 20px;
    display: inline-block;
    color: rgba(1, 41, 112, 0.5);
    line-height: 0;
    margin-right: 10px;
    transition: 0.3s;
}

.footer .footer-top .social-links a:hover {
    color: #012970;
}

.footer .footer-top h4 {
    font-size: 20px;
    font-weight: 700;
    font-family: poppins;
    color: #3780a0;
    position: relative;
    padding-bottom: 18px;
    text-align: left;
}

.footer .footer-top .footer-links {
    margin-bottom: 30px;
}

.footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #38a54f;
    font-size: 12px;
    line-height: 0;
}

.footer .footer-top .footer-links ul i:hover {
    color: #38a54f;
}

.footer .footer-top .footer-links ul li {
    padding: 7px 0;
    display: flex;
    align-items: center;
}

span.footerone {
    color: #fff;
    margin-top: 30px !important;
    margin-top: 17px;
    font-family: ui-monospace;
    font-family: Poppins, Arial, "Helvetica Neue", sans-serif;
    font-size: 20px;
}

span.footeraddress {
    text-align: left;
    color: #b9b9b9;
    float: right;
    font-size: 13px;
    font-family: poppins;
}

.footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

.footer .footer-top .footer-links ul a {
    color: #5e5e5e;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
    font-family: poppins;
}

.footer .footer-top .footer-links ul a:hover {
    color: #5e5e5e;
}

.footer .footer-top .footer-contact p {
    line-height: 26px;
}

.footer .footer-top .footer-contact .fa {
    margin-right: 25px;
    color: #fbbc04;
    font-size: 26px;
}

.footer .footer-top .footer-contact .fa-phone {
    margin-right: 18px;
}

.footer .footer-top .footer-contact .fa-envelope {
    margin-right: 18px;
}

.footer .footer-top .footer-contact {
    color: #b9b9b9;
    font-family: poppins;
}

.footer .copyright {
    text-align: left;
    padding-top: 30px;
    color: #5e5e5e;
    font-size: 13px;
    font-weight: 300 !important;
}

img.footer-logo {
    width: 45%;
}

.footer .credits {
    padding-top: 10px;
    text-align: center;
    font-size: 13px;
    color: #012970;
}

img.footervisa {
    width: 100%;
    height: 20px;
}

.font-robo {
    font-family: Roboto, Arial, "Helvetica Neue", sans-serif;
}

.font-poppins {
    font-family: Poppins, Arial, "Helvetica Neue", sans-serif;
}

.row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.row-space {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.col-2 {
    width: -webkit-calc((100% - 30px)/ 2);
    width: -moz-calc((100% - 30px)/ 2);
    width: calc((100% - 30px) / 2);
}

@media (max-width: 767px) {
    .col-2 {
        width: 100%;
    }
}

html {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

* {
    padding: 0;
    margin: 0;
}

*,
:after,
:before {
    -webkit-box-sizing: inherit;
    -moz-box-sizing: inherit;
    box-sizing: inherit;
}

blockquote,
body,
dd,
dl,
fieldset,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
legend,
ol,
p,
pre,
ul {
    margin: 0;
    padding: 0;
}

li>ol,
li>ul {
    margin-bottom: 0;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

fieldset {
    min-width: 0;
    border: 0;
}

button {
    outline: 0;
    background: 0 0;
    border: none;
}

.page-wrapper {
    min-height: 100vh;
}

body {
    font-family: Poppins, Arial, "Helvetica Neue", sans-serif;
    font-weight: 400;
    font-size: 14px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 400;
}

h1 {
    font-size: 36px;
}

h2 {
    font-size: 30px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 18px;
}

h5 {
    font-size: 15px;
}

h6 {
    font-size: 13px;
}

.bg-blue {
    background: #2c6ed5;
}

.bg-red {
    background: #fa4251;
}

.bg-gra-01 {
    background: -webkit-gradient(linear,
            left bottom,
            left top,
            from(#fbc2eb),
            to(#a18cd1));
    background: -webkit-linear-gradient(bottom, #fbc2eb 0, #a18cd1 100%);
    background: -moz-linear-gradient(bottom, #fbc2eb 0, #a18cd1 100%);
    background: -o-linear-gradient(bottom, #fbc2eb 0, #a18cd1 100%);
    background: linear-gradient(to top, #fbc2eb 0, #a18cd1 100%);
}

.bg-gra-02 {
    background: -webkit-gradient(linear,
            left bottom,
            right top,
            from(#fc2c77),
            to(#6c4079));
    background: -webkit-linear-gradient(bottom left, #fc2c77 0, #6c4079 100%);
    background: -moz-linear-gradient(bottom left, #fc2c77 0, #6c4079 100%);
    background: -o-linear-gradient(bottom left, #fc2c77 0, #6c4079 100%);
    background: linear-gradient(to top right, #fc2c77 0, #6c4079 100%);
}

.p-t-100 {
    padding-top: 100px;
}

.p-t-130 {
    padding-top: 130px;
}

.p-t-180 {
    padding-top: 180px;
}

.p-t-20 {
    padding-top: 20px;
}

.p-t-15 {
    padding-top: 15px;
}

.p-t-10 {
    padding-top: 10px;
}

.p-t-30 {
    padding-top: 30px;
}

.p-b-100 {
    padding-bottom: 100px;
}

.m-r-45 {
    margin-right: 45px;
}

.wrapper {
    margin: 0 auto;
}

.wrapper--w960 {
    max-width: 960px;
}

.wrapper--w780 {
    max-width: 780px;
}

.wrapper--w680 {
    max-width: 680px;
}

.btn {
    display: inline-block;
    line-height: 50px;
    padding: 0 50px;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    cursor: pointer;
    font-size: 18px;
    color: #fff;
    font-family: Poppins, Arial, "Helvetica Neue", sans-serif;
}

.btn--radius {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.btn--radius-2 {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.btn--pill {
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}

.btn--green {
    background: #57b846;
}

.btn--green:hover {
    background: #4dae3c;
}

.btn--blue {
    background: #fbbc04;
    color: #000 !important;
    font-weight: 500;
    font-size: 16px !important;
}

.btn--blue:hover {
    background: #fbbc04;
    color: #000 !important;
    font-weight: 500;
    font-size: 16px !important;
}

td.active {
    background-color: #2c6ed5;
}

input[type="date" i] {
    padding: 14px;
}

.table-condensed td,
.table-condensed th {
    font-size: 14px;
    font-family: Roboto, Arial, "Helvetica Neue", sans-serif;
    font-weight: 400;
}

.daterangepicker td {
    width: 40px;
    height: 30px;
}

.daterangepicker {
    border: none;
    -webkit-box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.15);
    display: none;
    border: 1px solid #e0e0e0;
    margin-top: 5px;
}

.daterangepicker::after,
.daterangepicker::before {
    display: none;
}

.daterangepicker thead tr th {
    padding: 10px 0;
}

.daterangepicker .table-condensed th select {
    border: 1px solid #ccc;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    font-size: 14px;
    padding: 5px;
    outline: 0;
}

input {
    outline: 0;
    margin: 0;
    border: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    width: 100%;
    font-size: 14px;
    font-family: inherit;
}

.input--style-4 {
    line-height: 35px;
    background: #fafafa;
    -webkit-box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.08);
    -moz-box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.08);
    box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.08);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    padding: 0 20px;
    font-size: 16px;
    color: #666;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.input--style-4:-moz-placeholder {
    opacity: 1;
}

.input--style-4::-moz-placeholder {
    opacity: 1;
}

.label {
    font-size: 16px;
    color: #555;
    text-transform: capitalize;
    display: block;
    margin-bottom: 5px;
}

.radio-container {
    display: inline-block;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    font-size: 16px;
    color: #666;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.radio-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio-container input:checked~.checkmark {
    background-color: #e5e5e5;
}

.radio-container input:checked~.checkmark:after {
    display: block;
}

.radio-container .checkmark:after {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: #57b846;
}

.checkmark {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #e5e5e5;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.08);
    -moz-box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.08);
    box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.08);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.input-group {
    position: relative;
    margin-bottom: 22px;
}

.input-group-icon {
    position: relative;
}

.input-icon {
    position: absolute;
    font-size: 18px;
    color: #999;
    right: 18px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    cursor: pointer;
}

button.headerform {
    background: #fbbc04;
    border: 0;
    padding: 10px 30px;
    color: #161515;
    transition: 0.4s;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
}

.select--no-search .select2-search {
    display: none !important;
}

.rs-select2 .select2-container {
    width: 100% !important;
    outline: 0;
    background: #fafafa;
    -webkit-box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.08);
    -moz-box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.08);
    box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.08);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.rs-select2 .select2-container .select2-selection--single {
    outline: 0;
    border: none;
    height: 50px;
    background: 0 0;
}

.rs-select2 .select2-container .select2-selection--single .select2-selection__rendered {
    line-height: 50px;
    padding-left: 0;
    color: #555;
    font-size: 16px;
    font-family: inherit;
    padding-left: 22px;
    padding-right: 50px;
}

.rs-select2 .select2-container .select2-selection--single .select2-selection__arrow {
    height: 50px;
    right: 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.rs-select2 .select2-container .select2-selection--single .select2-selection__arrow b {
    display: none;
}

.rs-select2 .select2-container .select2-selection--single .select2-selection__arrow:after {
    font-family: Material-Design-Iconic-Font;
    content: "\f2f9";
    font-size: 24px;
    color: #999;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.rs-select2 .select2-container.select2-container--open .select2-selection--single .select2-selection__arrow::after {
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.select2-container--open .select2-dropdown--below {
    border: none;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.15);
    border: 1px solid #e0e0e0;
    margin-top: 5px;
    overflow: hidden;
}

.select2-container--default .select2-results__option {
    padding-left: 22px;
}

.title {
    font-size: 24px;
    color: #525252;
    font-weight: 400;
    margin-bottom: 40px;
}

.card {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    background: #fff;
}

.card-4 {
    background: #fff;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    -webkit-box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.15);
    margin-top: 43px;
    height: 85%;
    width: 75% !important;
}

.card-4 .card-body {
    padding: 29px 28px;
    padding-bottom: 65px;
}

@media (max-width: 767px) {
    .card-4 .card-body {
        padding: 50px 40px;
    }
}

input.input--style-4.message {
    height: 100px;
}

button.btn.btn--radius-2.btn--blue.getstart {
    display: inline-block;
    line-height: 38px;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    cursor: pointer;
    font-size: 18px;
    color: #fff;
    font-family: Poppins, Arial, "Helvetica Neue", sans-serif;
    width: 100%;
}

h2.title {
    margin: -5px 6px 10px 0;
    font-family: Poppins;
    font-weight: 800;
    font-size: 24px;
    line-height: 30px;
}

button.btn.btn-primary {
    font-size: 19px;
    padding: 0.2rem 0.5rem;
    background-color: #fbbc04;
    border-color: #fbbc04;
    color: #000;
    font-weight: 500;
    border-radius: 10px;
}

button.btn.btn-secondary {
    font-size: 19px;
    background-color: #95c11e;
    border-color: #95c11e;
    color: #fff;
    font-weight: 500;
    padding: 28px 21px;
    line-height: 1px;
    width: 130%;
    border-radius: 10px;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.sldier {
    padding: 12px 0;
}

.sldier .heading .img-fluid {
    margin-bottom: 10px !important;
}

.sldier .heading {
    margin-top: 35px;
}

.sldier .heading p .fa {
    font-size: 6px;
    font-weight: 600;
}

.sldier .heading .fa {
    color: #339580;
}

.sldier .heading h2 {
    font-family: poppins;
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 12px;
    color: #000 !important;
}

.sldier .heading h6 {
    font-size: 20px;
    color: #000;
}

.sldier .heading h6 .fa {
    margin-right: 6px;
}

.sldier .swiper-container .swiper-slide h6 {
    font-weight: 600;
    font-size: 15px;
    color: #000;
    margin-top: 12px;
}

.sldier .swiper-container .swiper-slide h5 {
    font-weight: 600;
    font-size: 16px;
    color: #000;
    font-family: poppins;
    margin-top: 12px;
}

.sldier .swiper-container .swiper-slide p {
    font-weight: 400;
    font-size: 14px;
    color: #000;
    margin-top: 7px;
}

.sldier .heading p {
    color: #000;
}

.container.sliders {
    border: 1px solid #dcdcdc;
    padding: 40px 20px;
}

.digital-marketing {
    background-image: url(../images/landing-bg1.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100vh;
}

.digital-marketing .text-area h4 {
    font-family: Inter, sans-serif;
    font-weight: 500;
    font-size: 24px;
    color: #000;
    line-height: 30px;
}

.digital-marketing .text-area h3 {
    font-family: Inter, sans-serif;
    font-weight: 900;
    font-size: 36px;
    color: #000;
    line-height: 42px;
    margin-bottom: 25px;
}

.digital-marketing .text-area p {
    font-family: Inter, sans-serif;
    font-weight: 300;
    font-size: 16px;
    font-weight: 400;
    color: #515151;
    line-height: 25px;
    margin-bottom: 20px;
    padding-right: 50px;
}

.digital-marketing .text-area {
    margin-top: 50px;
}

.digital-marketing .text-area .input-group input {
    margin-right: 20px;
}

.digital-marketing .text-area .input-group .btn {
    background-color: #d00202;
    border: none;
    outline: 0;
}

.steps {
    padding: 50px 0 40px 0;
    background-color: #fff;
}

.steps .row {
    overflow: hidden;
}

.steps .content-item {
    padding: 20px;
    border-left: 1px solid #d4e9e6;
    border-bottom: 1px solid #d4e9e6;
    margin: -1px;
}

.steps .heading h1 {
    font-family: Inter, sans-serif;
    font-size: 52px;
    font-weight: 900;
    color: #000;
    margin-bottom: 5px;
}

.steps .heading p {
    font-family: Inter, sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #000;
    margin-bottom: 50px;
}

.steps .content-item .text-area img {
    max-width: 80px;
}

.steps .content-item span {
    font-size: 14px;
    font-weight: 400;
    color: #318ce6;
    text-decoration: underline;
}

.steps .content-item .text-area .text-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 10px 10px 10px;
    color: #000;
    font-family: Poppins;
}

.steps .content-item .text-area .text-content p {
    font-family: Poppins;
    color: #5d5d5d;
    font-size: 14px;
    font-weight: 400;
    margin: 0 10px 10px 10px;
    padding: 0;
}

.steps .text-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 10px 10px 10px;
    color: #000;
    font-family: Poppins;
}

.steps .text-content p {
    font-family: Poppins;
    color: #5d5d5d;
    font-size: 14px;
    font-weight: 400;
    margin: 0 10px 10px 10px;
    padding: 0;
}

@media (max-width: 768px) {
    .steps .content-item {
        padding: 40px 0;
    }
}

.text-area.service .img-wrapper {
    margin-bottom: 10% !important;
    margin-top: 20px;
}

.text-area.service {
    text-align: center;
}

.clientsays .heading h2 {
    font-family: Inter, sans-serif;
    margin-bottom: 50px;
    font-weight: 900;
    font-size: 52px;
    color: #000;
}

.clientsays .no-reviews h2 {
    font-family: Inter, sans-serif;
    color: #000 !important;
    margin-right: 12px;
    font-size: 20px;
}

.clientsays .no-reviews .fa {
    color: #f19b12 !important;
}

.clientsays .powered span {
    font-size: 14px;
    color: #000;
    font-weight: 400;
    margin-right: 8px;
}

.clientsays .powered h5 {
    font-size: 18px;
    color: #000;
    font-weight: 700;
}

.clientsays .powered .fa {
    color: #00b67a;
    margin-right: 8px;
}

.clientsays .client-reviews .col-lg-4 {
    margin-bottom: 20px;
}

.clientsays .testinomial {
    border: 2px solid #9c9393;
    padding: 20px;
    border-radius: 8px;
    transition: ease-in-out 0.5;
}

.clientsays .testinomial:hover {
    border: 2px solid #f19b12;
    transform: translateY(-12px);
    padding: 20px;
    border-radius: 8px;
    transition: all ease-in-out 0.5s;
}

.clientsays .testinomial .five-star h6 {
    font-size: 16px;
    font-weight: 600;
    padding-top: 5px;
    font-family: Arial, Helvetica, sans-serif;
}

.clientsays .testinomial .five-star span {
    color: #f19b12;
    margin-left: 6px;
}

.clientsays .testinomial .text-area p {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    font-family: poppins;
    margin-bottom: 12px;
}

.clientsays .testinomial .text-area h6 {
    font-size: 18px;
    font-weight: 500;
    color: #000;
    font-family: poppins;
    margin-bottom: 12px;
}

.clientsays .testinomial .verified img {
    object-fit: contain;
    margin-right: 6px;
}

.clientsays .testinomial .verified h6 {
    padding-top: 6px;
    font-size: 15px;
}

section#clientssays {
    background-color: #e4e4e4;
}

.scale-brand .left-side {
    padding: 50px 100px;
    background-color: #fcfcfc;
}

.scale-brand .right-side {
    padding: 40px 100px 40px 40px;
    background-color: #4a4a4a;
    color: #fff;
}

.scale-brand .text-area h2 {
    background: -webkit-linear-gradient(left, #326b92 30%, #02a04e 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: Inter, sans-serif;
    color: #000 !important;
    margin-right: 12px;
    font-size: 44px;
    font-weight: 900;
    margin-bottom: 18px;
    line-height: 48px;
}

.scale-brand .text-area p {
    font-family: Inter, sans-serif;
    color: #000 !important;
    margin-right: 12px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 25px;
}

.scale-brand img {
    max-width: 400px;
    height: auto;
}

.scale-brand .right-side label {
    font-size: 14px;
    margin-bottom: 0;
    color: #fcfcfc;
}

.scale-brand .right-side input {
    background: 0 0;
    border: none;
    outline: 0;
    border-bottom: 1px solid #fcfcfc;
    border-radius: 0;
    color: #fff;
    padding: 10px 20px 10px 0;
}

.scale-brand .right-side input:focus {
    background: 0 0;
    border: none;
    outline: 0;
    border-bottom: 1px solid #555;
    border-radius: 0;
    color: #fff;
}

.scale-brand .right-side input ::placeholder {
    color: #555;
}

.scale-brand .right-side label.checkbox-label {
    font-size: 14px;
    margin-bottom: 0;
    color: #fff;
}

.scale-brand .right-side .col-md-6.checkboxx {
    margin-bottom: -16px;
    padding: 0;
}

@media (max-width: 600px) {
    .scale-brand form {
        margin-top: 20px;
    }

    .scale-brand .col-md-6.checkboxx {
        margin-bottom: -20px;
    }
}

input.name {
    border: none;
    outline: 0;
    border-bottom: 1px solid #e4e4e4;
    padding: 2px 0;
}

input.name:active,
input.name:focus {
    outline: none;
    box-shadow: none;
    border: none;
}

label.formslable {
    font-size: 16px;
    color: #000;
    font-weight: 600;
}

input#vehicle1 {
    width: 15%;
}

button.messagebutton {
    background: #d00202;
    border-radius: 50px !important;
    border: 0;
    padding: 8px 30px;
    color: #fff;
    transition: 0.4s;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    width: 85%;
    font-family: poppins;
}

.banner .row {
    background-image: url(../images/new-img3.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 30vh;
    padding: 20px 0;
    position: relative;
    bottom: -70px;
}

.banner .text-area {
    margin-top: 25px;
    color: #fff;
}

.banner .text-area h6 {
    font-size: 20px;
    margin-bottom: 10px;
    font-family: Inter;
}

.banner .text-area h4 {
    font-size: 26px;
    font-weight: 800;
    font-family: Inter;
}

.banner .text-area h4 img {
    max-width: 34px;
}

.banner .text-area {
    margin-top: 25px;
    color: #fff;
}

.banner .no1 {
    color: #fff;
    margin-top: 10px;
}

.banner .no1 h6 {
    font-size: 50px;
    font-weight: 300;
    margin-bottom: 10px;
    font-family: Inter;
}

.banner .no1 h4 {
    font-size: 45px;
    font-weight: 700;
    margin-bottom: -8px;
    font-family: Inter;
}

@media (max-width: 600px) {
    .banner .row {
        background-image: url(../images/new-img3.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 80vh;
        padding: 20px 0;
        position: relative;
        bottom: -70px;
        text-align: center;
        margin: 0 auto;
    }
}

@-webkit-keyframes slide-down {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes slide-down {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.intl-tel-input.allow-dropdown input,
.intl-tel-input.allow-dropdown input[type="tel"],
.intl-tel-input.allow-dropdown input[type="text"],
.intl-tel-input.separate-dial-code input,
.intl-tel-input.separate-dial-code input[type="tel"],
.intl-tel-input.separate-dial-code input[type="text"] {
    padding-right: 6px;
    padding-left: 10px !important;
    margin-left: 0;
    text-align: center;
}

.intl-tel-input .selected-flag {
    z-index: 1;
    position: relative;
    width: 36px !important;
    height: 100%;
    padding: 1px 0 0 2px !important;
}

.intl-tel-input.allow-dropdown .selected-flag,
.intl-tel-input.separate-dial-code .selected-flag {
    width: 30px !important;
}

.iti-flag {
    width: 15px !important;
    height: 15px !important;
    box-shadow: 0 0 1px 0 #888;
    background-image: url(img/flags.png);
    background-repeat: no-repeat;
    background-color: #dbdbdb;
    background-position: 20px 0;
}

input.form-control.text {
    width: 90%;
    border-radius: 10px;
    border: none;
    background-color: #f3f3f3;
    padding: 8px 20px;
}

input#inputAddress:focus,
input.form-control.text:focus,
select#inputState:focus {
    box-shadow: none;
}

.form-group.textform.SEO {
    width: 50%;
    margin-right: 21px;
}

.form-group.textform {
    width: 95%;
}

select#inputState {
    border: none;
    background-color: #f3f3f3;
    border-radius: 10px;
    padding: 8px 20px;
}

input#inputAddress {
    border: none;
    background-color: #f3f3f3;
    border-radius: 10px;
    padding: 8px 20px;
}

.container.text-md-left.aos-init.aos-animate {
    margin-top: 30px;
    margin-bottom: 30px;
}

section#landing-hero {
    padding: 30px 0;
}

input.form-control.ready {
    margin-left: 24%;
}

img.banner.image {
    float: right;
    padding-top: 30%;
}

h3.count {
    margin-top: 5%;
    font-size: 45px;
    font-family: Inter;
    font-weight: 700;
    margin-left: -18%;
}

h3.countpecentage {
    margin-top: 0;
    font-size: 45px;
    font-family: Inter;
    font-weight: 700;
    margin-left: -6%;
}

#lanidng-hero {
    width: 100%;
    height: calc(130vh - 70px);
    background-size: cover;
    background-color: #000;
    position: relative;
    margin-top: 70px;
    padding: 0;
}

#myVideo {
    position: absolute;
    right: 0;
    bottom: -5%;
    min-width: 100%;
    min-height: auto;
}

#lanidng-hero:before {
    content: "";
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#lanidng-hero .container {
    z-index: 2;
}

#lanidng-hero h1 {
    margin: 0 0 10px 0;
    font-size: 48px;
    font-family: Inter, sans-serif;
    font-weight: 900;
    line-height: 56px;
    color: #fff;
}

#lanidng-hero h2 {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 35px;
    font-size: 24px;
}

#lanidng-hero .btn-get-started {
    font-family: Raleway, sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 28px;
    border-radius: 4px;
    transition: 0.5s;
    border: 2px solid #fff;
    color: #fff;
}

#lanidng-hero .btn-get-started:hover {
    border-color: #1bac91;
    background: #1bac91;
}

#lanidng-hero .text-area {
    margin-top: 80px;
}

#lanidng-hero .text-area h1 {
    font-family: Inter, sans-serif;
    font-size: 34px;
    line-height: 40px;
    color: #fff;
    font-weight: 900;
}

#lanidng-hero .text-area p {
    font-family: Inter, sans-serif;
    font-size: 16px;
    color: #b0b0b0;
    font-weight: 400;
    margin-bottom: 25px;
}

#lanidng-hero .text-area .btn-danger {
    font-family: Poppins;
    background-color: #d00202;
    border: none;
    font-weight: 400;
    outline: 0;
    padding: 2px 30px;
    border-radius: 50px;
}

#lanidng-hero .text-area .btn-primary {
    font-family: Poppins;
    background-color: #fff;
    color: #000;
    font-weight: 600;
    border: none;
    outline: 0;
    margin-right: 5px;
    padding: 2px 30px;
    border-radius: 50px;
}

#lanidng-hero .form {
    width: 80%;
    background-color: #fff;
    border: none;
    outline: 0;
    border-radius: 28px;
    padding: 40px 20px;
    margin-top: 20px;
}

#lanidng-hero .form .heading {
    font-family: Inter, sans-serif;
    color: #5e5e5e;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    line-height: 28px;
}

#lanidng-hero .form .form-group {
    margin-bottom: 24px;
    outline: 0;
    border-radius: 5px;
}

#lanidng-hero .form select {
    color: #000;
}

#lanidng-hero .form .form-group ::placeholder {
    color: #000 !important;
}

#lanidng-hero .form .btn-danger {
    display: block;
    background-color: #d00202;
    border: none;
    outline: 0;
    width: 95%;
    border-radius: 50px;
}

#lanidng-hero .form .btn-danger:focus {
    box-shadow: none;
}

@media (min-width: 1024px) {
    #lanidng-hero {
        background-attachment: fixed;
    }
}

@media (max-width: 992px) {
    #lanidng-hero {
        margin-top: 60px;
        height: calc(100vh - 60px);
    }
}

@media (max-width: 768px) {
    #lanidng-hero h1 {
        font-size: 28px;
        line-height: 36px;
    }

    #lanidng-hero h2 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }
}

#landing-header {
    height: 90px;
    transition: all 0.5s;
    z-index: 997;
    background: #000;
}

#landing-header .logo h1 {
    font-size: 30px;
    margin: 0;
    padding: 6px 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

#landing-header .logo h1 a,
#landing-header .logo h1 a:hover {
    color: #fff;
    text-decoration: none;
}

#landing-header .logo img {
    padding: 0;
    margin: 0;
    max-height: 100px;
}

@media (max-width: 992px) {
    #landing-header {
        height: 60px;
    }
}

#landing-header .headerbutton {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

#landing-header .headerbutton .fa-bars {
    margin-left: 16px;
    font-size: 22px;
    color: #707070 !important;
}

#landing-header .headerbutton .fa {
    margin-right: 16px;
    font-size: 22px;
    color: #f2bc18;
}

#landing-header .headerbutton h4 {
    color: #fff;
    font-weight: 700;
    font-family: Inter;
    font-size: 22px;
}

#landing-header a.getstarted.scrollto {
    background: #d00202;
    padding: 14px 34px;
    margin-left: 30px;
    border-radius: 4px;
    color: #fff;
    font-family: Inter;
    font-weight: 600;
    background: linear-gradient(to right, #38a904, #f3bb13);
}

#landing-header .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    font-family: Inter;
}

#landing-header .navbar li {
    position: relative;
}

#landing-header .navbar>ul>li+li {
    margin-left: 30px;
}

#landing-header .navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
}

#landing-header .navbar .getstarted,
.navbar .getstarted:focus {
    background: #d00202;
    padding: 8px 20px;
    margin-left: 30px;
    border-radius: 4px;
    color: #fff;
}

#landing-header .navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
    color: #fff;
    background: #d00202;
}

#landing-header .navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

#landing-header .navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

#landing-header .navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 3px;
    left: 0;
    background-color: #d00202;
    visibility: hidden;
    width: 0;
    transition: all 0.3s ease-in-out 0s;
}

#landing-header .navbar a:hover:before,
.navbar .active:before,
.navbar li:hover>a:before {
    visibility: visible;
    width: 100%;
}

#landing-header .navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
    color: #fff;
}

#landing-header .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 0;
    top: 100%;
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0 0 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

#landing-header .navbar .dropdown ul li {
    min-width: 260px;
}

#landing-header .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 16px;
    text-transform: none;
    font-weight: 500;
    color: #062822;
}

#landing-header .navbar .dropdown ul a i {
    font-size: 12px;
}

#landing-header .navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    color: #1bac91;
}

#landing-header .navbar .dropdown:hover>ul {
    opacity: 1;
    visibility: visible;
}

#landing-header .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

#landing-header .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    #landing-header .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    #landing-header .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}

#landing-header .mobile-nav-toggle {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

#landing-header .navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(16, 31, 29, 0.9);
    transition: 0.3s;
    z-index: 0;
}

#landing-header .navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

#landing-header .navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

#landing-header .navbar-mobile>ul>li+li {
    margin: 0;
}

#landing-header .navbar-mobile a:hover:before,
.navbar-mobile .active:before,
.navbar-mobile li:hover>a:before {
    visibility: hidden;
}

#landing-header .navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #21413c;
}

#landing-header .navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: #1bac91;
}

#landing-header .navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

#landing-header .navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0 0 30px rgba(127, 137, 161, 0.25);
}

#landing-header .navbar-mobile .dropdown ul li {
    min-width: 200px;
}

#landing-header .navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

#landing-header .navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

#landing-header .navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
    color: #1bac91;
}

#landing-header .navbar-mobile .dropdown>.dropdown-active {
    display: block;
}

@media (max-width: 991px) {
    #landing-header .mobile-nav-toggle {
        display: block;
    }

    #landing-header .navbar ul {
        display: none;
    }
}

.landing-page-seo-banner {
    background-image: url(../images/rankcrafters.png);
    background-repeat: no-repeat;
    object-fit: cover;
    background-size: inherit;
    background-position: center;
    background-size: cover;
}

.landing-steps {
    padding: 50px 0 40px 0;
    background-color: #fff;
}

.landing-steps .row {
    overflow: hidden;
}

.landing-steps .content-item {
    padding: 20px;
    border-left: 1px solid #d4e9e6;
    border-bottom: 1px solid #d4e9e6;
    margin: -1px;
}

.landing-steps .heading h1 {
    font-family: Inter, sans-serif;
    font-size: 52px;
    font-weight: 900;
    color: #000;
    margin-bottom: 50px;
}

.landing-steps .content-item .text-area img {
    max-width: 80px;
}

.landing-steps .content-item span {
    display: block;
    font-size: 24px;
    font-weight: 400;
    color: #1bac91;
}

.landing-steps .content-item .text-area .text-content h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 10px 10px 10px;
    color: #000;
}

.landing-steps .content-item .text-area .text-content p {
    color: #5d5d5d;
    font-size: 14px;
    font-weight: 500;
    margin: 0 10px 10px 10px;
    padding: 0;
}

@media (max-width: 768px) {
    .landing-steps .content-item {
        padding: 40px 0;
    }
}

.landing-features {
    background-image: url(../image/clients-bg.png);
    background-repeat: no-repeat;
}

.landing-features .heading h2 {
    font-size: 48px;
    font-weight: 900;
    font-family: Inter;
    color: #515151;
    margin-bottom: 50px;
}

.landing-features .col-lg-3 {
    margin: 40px 0;
}

.landing-features .col-lg-3 .client-logo img {
    max-width: 210px !important;
}

.landing-faq {
    background: url(../image/faq-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100vh;
}

.landing-faq .section-title h2 {
    font-family: Inter, sans-serif;
    font-size: 40px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 50px;
    margin-left: 70px;
}

.landing-faq .faq-list {
    padding: 0 70px;
}

.landing-faq .faq-list ul {
    padding: 0;
    list-style: none;
}

.landing-faq .faq-list li+li {
    margin-top: 15px;
}

.landing-faq .faq-list li {
    padding: 20px 0;
    background: #fcfcfc;
    border-bottom: 1px solid #5d5d5d;
    position: relative;
    padding: 12px 32px;
    border-radius: 10px;
}

.landing-faq .faq-list a {
    display: block;
    position: relative;
    font-family: 'Inter', sans-serif !important;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    padding: 0;
    outline: 0;
    cursor: pointer;
}

.landing-faq .faq-list .icon-close,
.landing-faq .faq-list .icon-show {
    font-size: 24px;
    position: absolute;
    right: 0;
    top: 0;
    color: #4dae3c;
}

.landing-faq .faq-list p {
    margin-bottom: 0;
    padding: 10px 0 0 0;
    font-size: 13px;
    color: #393c3d;
}

.landing-faq .faq-list .icon-show {
    display: none;
}

.landing-faq .faq-list a.collapsed {
    color: #7a7a7a;
}

.landing-faq .faq-list a.collapsed:hover {
    color: #95c11e;
}

.landing-faq .faq-list a.collapsed .icon-show {
    display: inline-block;
    font-size: 16px;
    margin-top: 4px;
}

.landing-faq .faq-list .fa-chevron-up:before {
    font-size: 16px;
    margin-top: 4px;
}

.landing-faq .faq-list a.collapsed .icon-close {
    display: none;
}

@media (max-width: 1200px) {
    .landing-faq .faq-list {
        padding: 0;
    }
}

.landing-sldier .heading .img-fluid {
    margin-bottom: 2px !important;
}

.landing-sldier .heading p .fa {
    font-size: 6px;
    font-weight: 600;
}

.landing-sldier .heading p {
    font-size: 12px;
    font-style: italic;
    font-weight: 400;
}

.landing-sldier .heading h6 {
    font-size: 20px;
    color: #00b67a !important;
    font-family: Inter;
    font-weight: 700;
}

.landing-sldier .heading h5 {
    font-size: 20px;
    color: #fff !important;
    font-family: Inter;
    font-weight: 500;
}

.landing-sldier .heading .fa {
    color: #339580;
}

.landing-sldier .heading h2 {
    font-weight: 700;
    font-size: 26px;
    margin-bottom: 12px;
    color: #fff !important;
}

.landing-sldier .swiper-container .swiper-slide h6 {
    font-weight: 600;
    font-size: 15px;
    color: #fff;
}

.landing-sldier .swiper-container .swiper-slide h5 {
    font-weight: 800;
    font-size: 17px;
    color: #fff;
}

.landing-sldier .swiper-container .swiper-slide p {
    font-weight: 400;
    font-size: 14px;
    color: #fff;
}

.landing-sldier .heading p {
    color: #fff;
}

.grow {
    background-color: #e4e4e4;
}

.grow h2 {
    font-family: Inter, sans-serif;
    color: #000;
    margin-bottom: 20px;
    font-weight: 900;
    font-size: 40px;
}

.grow .input-group input {
    margin-right: 20px;
    padding: 4px 20px;
}

.grow .input-group input {
    margin-right: 20px;
    padding: 4px 20px;
}

.grow .input-group .btn {
    margin-right: 20px;
    background-color: #d00202;
    border: none;
    outline: 0;
}

.grow .input-group>.form-control {
    flex: unset !important;
    width: 400px;
}

.clientsays .heading h2 {
    font-family: Inter, sans-serif;
    margin-bottom: 50px;
    font-weight: 900;
    font-size: 52px;
    color: #000;
}

.clientsays .no-reviews h2 {
    font-family: Inter, sans-serif;
    color: #000 !important;
    margin-right: 12px;
    font-size: 20px;
}

.clientsays .no-reviews .fa {
    color: #f19b12 !important;
}

.clientsays .powered span {
    font-size: 14px;
    color: #000;
    font-weight: 400;
    margin-right: 8px;
}

.clientsays .powered h5 {
    font-size: 18px;
    color: #000;
    font-weight: 700;
}

.clientsays .powered .fa {
    color: #00b67a;
    margin-right: 8px;
}

.clientsays .client-reviews .col-lg-4 {
    margin-bottom: 20px;
}

.clientsays .testinomial {
    border: 2px solid #9c9393;
    padding: 20px;
    border-radius: 8px;
    transition: ease-in-out 0.5;
}

.clientsays .testinomial:hover {
    border: 2px solid #f19b12;
    transform: translateY(-12px);
    padding: 20px;
    border-radius: 8px;
    transition: all ease-in-out 0.5s;
}

.clientsays .testinomial .five-star h6 {
    font-size: 16px;
    font-weight: 600;
    padding-top: 5px;
    font-family: Arial, Helvetica, sans-serif;
}

.clientsays .testinomial .five-star span {
    color: #f19b12;
    margin-left: 6px;
}

.clientsays .testinomial .text-area p {
    font-size: 16px;
    font-weight: 500;
    color: #000;
}

.clientsays .testinomial .text-area h6 {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 12px;
}

.clientsays .testinomial .verified img {
    object-fit: contain;
    margin-right: 6px;
}

.clientsays .testinomial .verified h6 {
    padding-top: 6px;
    font-size: 15px;
}

.free-proposal {
    background: url(../image/gradient.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    padding: 0 0 50px 0;
}

.free-proposal .heading h2 {
    font-family: Inter;
    font-size: 40px;
    font-weight: 900;
    color: #fff;
    line-height: 48px;
}

.free-proposal .heading p {
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    color: #343434;
    margin-bottom: 40px;
}

.free-proposal .heading input {
    padding: 12px 25px;
    border-radius: 50px;
}

.free-proposal .heading .btn {
    display: block;
    width: 100%;
    background-color: #d00202;
    border-radius: 50px;
    border: none;
    outline: 0;
}

.free-proposal .img-wrapper img {
    max-width: 500px;
    position: absolute;
    bottom: 45px;
}

.features .heading h1 {
    font-family: Inter, sans-serif;
    font-size: 52px;
    font-weight: 900;
    color: #000;
    margin-bottom: 20px;
}

.features .heading h6 {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    margin-bottom: 40px;
    padding-right: 80px;
}

.features .inner-heading h1 {
    font-size: 40px;
    font-weight: 700;
    color: #000;
}

.features .inner-heading h6 {
    font-size: 16px;
    font-weight: 500;
    color: #000;
}

.features .nav-tabs {
    border: 0;
}

.features .nav-link {
    font-size: 18px;
    border: 0;
    margin: 5px 10px;
    padding: 10px 26px;
    transition: 0.3s;
    color: #000;
    background-color: #fff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.12);
}

.features .nav-link:hover {
    color: #8bda24;
}

.features .nav-link img {
    margin-right: 16px;
}

.features .nav-link h4 {
    font-size: 18px;
    font-weight: 600;
}

.features .nav-link p {
    font-size: 14px;
    margin-bottom: 0;
}

.features .nav-link.active {
    background-color: #fff;
}

.features .nav-link.active h4 {
    color: #1bac91;
}

.features .tab-pane.active {
    -webkit-animation: slide-down 0.5s ease-out;
    animation: slide-down 0.5s ease-out;
}

.features .tab-pane {
    margin-top: 20px;
}

.features .tab-pane figure {
    margin-top: 50px;
}

.features {
    background-color: #fff;
}

.features .nav-links {
    font-size: 18px;
    border: 0;
    margin: 5px 10px;
    padding: 10px 26px;
    transition: 0.3s;
    color: #000;
    background-color: #fff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.12);
}

.features .nav-links:hover {
    color: #8bda24;
}

.features .nav-links img {
    margin-right: 16px;
}

.features .nav-linsks h4 {
    font-size: 18px;
    font-weight: 600;
}

.features .nav-links p {
    font-size: 14px;
    margin-bottom: 0;
}

.features .nav-links.active {
    background-color: #fff;
    color: red;
}

.features .nav-links.active h4 {
    color: #1bac91;
}

.features .tabss .nav {
    float: left;
    position: relative;
}

.features .tabss .nav .nav-item .nav-link {
    width: 250px;
}

#ul1.active {
    border-left: 4px solid #1bac91;
    border-radius: 5px;
    transition: ease-in 0.2s;
}

#ul2.active {
    border-left: 4px solid #e9c51c;
    border-radius: 5px;
    transition: ease-in 0.2s;
}

#ul3.active {
    border-left: 4px solid #26adf8;
    border-radius: 5px;
    transition: ease-in 0.2s;
}

#ul4.active {
    border-left: 4px solid #d84646;
    border-radius: 5px;
    transition: ease-in 0.2s;
}

#ul5.active {
    border-left: 4px solid #063574;
    border-radius: 5px;
    transition: ease-in 0.2s;
}

#ul6.active {
    border-left: 4px solid #7169e7;
    border-radius: 5px;
    transition: ease-in 0.2s;
}

.nav-item {
    margin-top: 10px;
}

#ul7.active {
    border-left: 4px solid #8faa0e;
    border-radius: 5px;
    transition: ease-in 0.2s;
}

#ul8.active {
    border-left: 4px solid #a70000;
    border-radius: 5px;
    transition: ease-in 0.2s;
}

#ul9.active {
    border-left: 4px solid #b7a90d;
    border-radius: 5px;
    transition: ease-in 0.2s;
}

#ul10.active {
    border-left: 4px solid #4b4b4b;
    border-radius: 5px;
    transition: ease-in 0.2s;
}

.case-study .video-slider {
    border-radius: 20px;
    position: relative;
}

.case-study .content-area {
    position: absolute;
    bottom: 80px;
    left: 25px;
    color: #fff;
}

.case-study .text-area {
    padding: 2px 40px;
    margin-top: 50px;
}

.case-study .text-area h1 {
    font-family: Inter;
    font-size: 46px;
    font-weight: 900;
    color: #484848;
    margin-bottom: 16px;
}

.case-study .text-area p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #000;
    margin-bottom: 16px;
    font-family: Inter;
    padding-right: 70px;
}

.case-study .text-area .btn {
    background-color: #d00202;
    border: none;
    outline: 0;
    border-radius: 50px;
}

.case-study .swiper-container .swiper-slide img {
    height: 300px;
    max-width: 200px;
    border-radius: 25px;
}

.case-study .swiper-container .swiper-button-prev {
    display: none;
}

.case-study .swiper-container .swiper-button-next {
    display: none;
}

.swiper-button-prev {
    left: 0 !important;
    color: #000;
    background-image: unset !important;
}

.swiper-button-next {
    right: 0 !important;
    color: #000;
    background-image: unset !important;
}

.digital-marketing .text-area h3 {
    font-family: Inter;
    font-weight: 900;
    font-size: 36px;
    line-height: 40px;
    margin-bottom: 20px;
    background: -webkit-linear-gradient(left, #367aa7 30%, #029f4f 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.digital-marketing .text-area h4 {
    font-weight: 700;
    font-size: 24px;
    color: #5e5e5e;
    line-height: 22px;
    margin-bottom: 20px;
    font-family: Inter;
}

.digital-marketing .text-area p {
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    color: #515151;
    line-height: 25px;
    margin-bottom: 20px;
    padding-right: 50px;
}

.digital-marketing .text-area {
    margin-top: 50px;
}

.digital-marketing .text-area .input-group input {
    margin-right: 20px;
    border-radius: 50px !important;
}

.digital-marketing .text-area .input-group .btn {
    background-color: #d00202;
    border: none;
    outline: 0;
    border-radius: 50px !important;
}

.roi-startegy .text-area {
    padding-right: 80px;
}

.roi-startegy .text-area h3 {
    font-family: Inter;
    margin-bottom: 20px;
    font-size: 42px;
    font-weight: 900;
    line-height: 48px;
    background: -webkit-linear-gradient(left, #367aa7 30%, #029f4f 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.roi-startegy .text-area h3 span {
    font-family: Inter;
    margin-bottom: 20px;
    font-size: 42px;
    font-weight: 900;
    line-height: 48px;
    background: #484848;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.roi-startegy .text-area .roi {
    color: #000 !important;
}

.roi-startegy .text-area .headings h5 {
    font-family: Inter;
    margin-bottom: 0;
    font-size: 24px;
    font-weight: 700;
    line-height: 40px;
    color: #000;
}

.roi-startegy .text-area .headings h5:hover {
    color: #d00202;
}

.roi-startegy .text-area .headings p {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 300;
    line-height: 22px;
    color: #000;
    font-family: Inter;
}

.numbers {
    background-image: linear-gradient(to right, #3ba659, #f4db05);
}

.numbers .counter-box {
    border-left: 2px solid #c5c4c4;
}

.numbers .firstchild {
    border-left: none !important;
}

.numbers .counter-box .numbers-img img {
    margin-right: 6px;
    object-fit: contain;
}

.numbers .counter-box .numbers-img h3 {
    font-family: Inter, sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    padding-top: 12px;
    margin-left: 1px;
}

.numbers .counter-box p {
    font-weight: 500;
    font-size: 14px;
    margin-top: 8px;
    color: #fff !important;
}

@media (max-width: 789px) {
    .row {
        text-align: center;
    }

    section {
        padding: 25px 0;
        overflow: hidden;
    }

    .numbers .firstchild {
        text-align: center !important;
    }

    .input-group>.form-control {
        width: 200px;
        margin: 0 auto;
    }

    .numbers .thirdchild {
        border-left: none;
    }

    .free-proposal .img-wrapper img {
        max-width: 300px !important;
        position: unset !important;
        margin-top: 150px;
    }

    .features .col-lg-3 .client-logo img {
        max-width: 180px !important;
        margin-bottom: 50px;
    }

    .clientsays .testinomial {
        margin-bottom: 20px;
    }

    .features .tabss .nav .nav-item .nav-link {
        width: 300px !important;
    }

    .features .tabss .nav .nav-item .nav-link {
        text-align: left;
    }

    .no-reviews {
        display: block !important;
    }

    .steps .content-item {
        text-align: left !important;
    }

    .steps .content-item .text-area img {
        max-width: 50px !important;
        margin: 10px !important;
    }

    .case-study .text-area {
        margin-top: 2px;
    }

    .clientsays .testinomial .text-area h6,
    .clientsays .testinomial .text-area p {
        text-align: left !important;
    }
}

.landing-seo-banner .row {
    background-image: url(../images/JT1---SEO.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 30vh;
    padding: 20px 0;
    position: relative;
    bottom: 100px;
}

.landing-seo-banner .text-area {
    margin-top: 25px;
    color: #fff;
}

.landing-seo-banner .text-area h6 {
    font-size: 20px;
    margin-bottom: 10px;
    font-family: Inter;
}

.landing-seo-banner .text-area h4 {
    font-size: 26px;
    font-weight: 800;
    font-family: Inter;
}

.landing-seo-banner .text-area h4 img {
    max-width: 34px;
}

.landing-seo-banner .text-area {
    margin-top: 25px;
    color: #fff;
}

.landing-seo-banner .no1 {
    color: #fff;
    margin-top: 10px;
}

.landing-seo-banner .no1 h6 {
    font-size: 50px;
    font-weight: 300;
    margin-bottom: 10px;
    font-family: Inter;
}

.landing-seo-banner .no1 h4 {
    font-size: 45px;
    font-weight: 700;
    margin-bottom: -8px;
    font-family: Inter;
}

.landing-seo-banner .text-area h3 {
    font-family: Inter;
    font-weight: 900;
    font-size: 36px;
    line-height: 40px;
    margin-bottom: 20px;
    background: -webkit-linear-gradient(right, #326b92, #2e8075);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.landing-seo-banner .text-area .input-group input {
    margin-right: 20px;
    border-radius: 50px !important;
}

@media (max-width: 600px) {
    .landing-seo-banner .row {
        background-image: url(../images/new-img3.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 80vh;
        padding: 20px 0;
        position: relative;
        bottom: -70px;
        text-align: center;
        margin: 0 auto;
    }
}

.seo-hero {
    background-image: url(../images/seo-hero.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100vh;
}

.seo-hero .text-area {
    padding: 100px 0;
}

.seo-hero .text-area h6 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 12px;
    font-family: Poppins;
    font-weight: 500;
    text-transform: uppercase;
}

.seo-hero .text-area h1 {
    font-size: 46px;
    margin-bottom: 12px;
    font-family: Inter;
    font-weight: 900;
    color: #fff;
    line-height: 50px;
}

.seo-hero .text-area p {
    font-size: 15px;
    color: #fff;
    margin-bottom: 20px;
    font-family: Inter;
    font-weight: 400;
}

.seo-hero .text-area .btn {
    line-height: 0;
    padding: 22px 40px;
    border-radius: 4px;
    transition: 0.5s;
    color: #fff;
    background: #d00202;
    font-size: 18px;
    font-weight: 500;
    outline: 0;
    border: none;
    width: 200px;
    border-radius: 50px;
}

.seo-hero .seo-hero-form {
    background-color: #fff !important;
    padding: 30px 24px;
    width: 65%;
    margin: 0 auto;
    margin-top: 60px;
    border-radius: 20px;
}

.seo-hero .seo-hero-form label {
    color: #000;
    font-size: 14px;
    font-weight: 400;
}

.seo-hero .seo-hero-form label span {
    color: #d00202;
    font-size: 14px;
    font-weight: 400;
}

.seo-hero .seo-hero-form ::placeholder {
    color: #000;
    font-size: 12px;
}

.seo-hero .seo-hero-form input {
    background-color: transparent;
    font-size: 12px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    border-radius: 0;
    color: #000;
}

.seo-hero .seo-hero-form form #options {
    background-color: transparent;
    width: 100%;
    color: #000;
    height: 30px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    font-size: 12px;
}

.seo-hero .seo-hero-form form option {
    color: #000;
    height: 30px;
}

.seo-hero .seo-hero-form input:focus {
    background-color: transparent;
    font-size: 14px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    border-radius: 0;
}

.seo-hero .heading h3 {
    color: #000;
    font-size: 20px;
    font-family: Inter;
    font-weight: 700;
}

.seo-hero .contact-area {
    margin-top: 16px;
}

.seo-hero .contact-area .icon img {
    margin-right: 8px;
}

.seo-hero .contact-area .num h6 {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    font-family: Inter;
}

.seo-hero .contact-area .num p {
    color: #fff;
    font-size: 14px;
    font-weight: 300;
}

@media (max-width: 601px) {
    .seo-hero-map {
        height: calc(70vh - 70px);
        background: url(../images/dallas-map.png);
        background-position: 20% 60%;
        background-repeat: no-repeat;
        background-size: contain;
    }

    .seo-hero .seo-hero-form {
        background-color: #fff !important;
        padding: 30px 40px;
        width: 100%;
        margin-top: 0 !important;
    }
}

.seo-sldier {
    padding: 0 0 12px 0;
    margin-top: -200px;
}

.seo-sldier .heading .img-fluid {
    margin-bottom: 10px !important;
}

.seo-sldier .heading {
    margin-top: 35px;
}

.seo-sldier .heading p .fa {
    font-size: 6px;
    font-weight: 600;
    color: #00b67a;
}

.seo-sldier .heading p span {
    text-decoration: underline;
}

.seo-sldier .heading .fa {
    color: #339580;
}

.seo-sldier .heading h2 {
    font-family: poppins;
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 12px;
    color: #000 !important;
}

.seo-sldier .heading h6 {
    font-size: 20px;
    color: #000;
    font-weight: 600;
    font-family: Inter;
}

.seo-sldier .heading h6 .fa {
    margin-right: 6px;
}

.seo-sldier .swiper-container .swiper-slide img {
    max-width: 130px;
}

.seo-sldier .swiper-container .swiper-slide h6 {
    font-weight: 600;
    font-size: 15px;
    color: #000;
    margin-top: 12px;
}

.seo-sldier .swiper-container .swiper-slide h5 {
    font-weight: 600;
    font-size: 16px;
    color: #000;
    font-family: poppins;
    margin-top: 12px;
}

.seo-sldier .swiper-container .swiper-slide p {
    font-weight: 400;
    font-size: 14px;
    color: #000;
    margin-top: 7px;
}

.seo-sldier .heading p {
    color: #000;
    margin: 6px 0;
}

.container.sliders {
    border: none;
    padding: 40px 20px;
}

@media (max-width: 601px) {
    .seo-sldier {
        padding: 2px 0;
        margin-top: -10px;
    }
}

.seo-digital-marketing {
    background-color: #fcfcfc;
}

.seo-digital-marketing .text-area {
    margin-top: 50px;
}

.seo-digital-marketing .text-area h3 {
    font-family: Inter, sans-serif;
    font-weight: 900;
    font-size: 48px;
    line-height: 55px;
    margin-bottom: 25px;
    background: -webkit-linear-gradient(left, #367aa7 30%, #049e52 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.seo-digital-marketing .text-area p {
    font-family: Inter, sans-serif;
    font-weight: 300;
    font-size: 16px;
    font-weight: 400;
    color: #515151;
    line-height: 25px;
    margin-bottom: 20px;
    padding-right: 50px;
}

.seo-digital-marketing .text-area .input-group input {
    margin-right: 20px;
    border-radius: 50px !important;
    border: none;
}

.seo-digital-marketing .text-area .input-group .btn {
    background-color: #d00202;
    border: none;
    outline: 0;
    border-radius: 50px !important;
}

.seo-solution .text-area h3 {
    font-family: Inter, sans-serif;
    font-weight: 900;
    font-size: 48px;
    line-height: 42px;
    margin-bottom: 25px;
    background: -webkit-linear-gradient(left, #326b92 30%, #049e52 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.seo-solution .text-area h4 {
    font-family: Inter;
    font-weight: 600;
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 12px;
    text-align: left;
}

.seo-solution .text-area p {
    font-family: Inter, sans-serif;
    font-weight: 300;
    font-size: 16px;
    font-weight: 400;
    color: #515151;
    line-height: 25px;
    margin-bottom: 20px;
    padding-right: 50px;
}

.seo-solution .text-area {
    margin-top: 50px;
}

.seo-solution .text-area .input-group input {
    margin-right: 20px;
}

.seo-solution .text-area .input-group .btn {
    background-color: #d00202;
    border: none;
    outline: 0;
    border-radius: 50px;
}

.seo-game .heading h2 {
    font-size: 42px;
    font-family: Inter;
    font-weight: 900;
    background: -webkit-linear-gradient(left, #326b92 30%, #049e52 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 50px;
}

.seo-game .heading p {
    color: #000;
    font-size: 16px;
    font-family: Inter;
    font-weight: 400;
    padding: 10px 90px;
    margin-bottom: 16px;
}

.seo-game .col-lg-4 {
    margin-bottom: 20px;
}

.seo-game .bg1 {
    background-image: url(../image/bg1.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 500px;
    border-radius: 50px;
    padding: 100px 50px;
}

.seo-game .bg2 {
    background-image: url(../image/bg2.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 500px;
    border-radius: 50px;
    padding: 100px 50px;
}

.seo-game .bg3 {
    background-image: url(../image/bg3.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 500px;
    border-radius: 50px;
    padding: 100px 50px;
}

.seo-game .bg4 {
    background-image: url(../image/bg4.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 500px;
    border-radius: 50px;
    padding: 100px 50px;
}

.seo-game .bg5 {
    background-image: url(../image/bg5.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 500px;
    border-radius: 50px;
    padding: 100px 50px;
}

.seo-game .bg6 {
    background-image: url(../image/bg6.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 500px;
    border-radius: 50px;
    padding: 100px 50px;
}

.seo-game .box-area:hover {
    box-shadow: 0 0 10px rgba(175, 218, 191, 0.5);
}

.seo-game .box-area.bg1:hover {
    box-shadow: 0 0 10px rgb(57 120 172);
}

.seo-game .box-area.bg2:hover {
    box-shadow: 0 0 10px rgb(52 133 154);
}

.seo-game .box-area.bg3:hover {
    box-shadow: 0 0 10px rgb(52 142 140);
}

.seo-game .box-area.bg4:hover {
    box-shadow: 0 0 10px rgb(47 155 116);
}

.seo-game .box-area.bg5:hover {
    box-shadow: 0 0 10px rgb(75 209 29);
}

.seo-game .box-area.bg6:hover {
    box-shadow: 0 0 10px rgb(220 223 17);
}

.seo-game .box-area {
    background-color: #fff;
}

.seo-game .box-area img {
    margin-bottom: 25px;
}

.seo-game .box-area h3 {
    margin-bottom: 12px;
    font-family: Inter;
    font-weight: 700;
    font-size: 22px;
}

.seo-game .box-area p {
    font-size: 18px;
    font-family: Inter;
    font-weight: 400;
}

.seo-scale-brand .text-side {
    padding: 0 100px;
    background-color: #fcfcfc;
}

.seo-scale-brand .text-side img {
    margin-top: -30px;
    max-width: 300px;
    margin-left: 100px;
}

.seo-scale-brand .text-area {
    padding: 100px 0;
}

.seo-scale-brand .text-area h2 {
    font-family: Inter, sans-serif;
    font-weight: 900;
    font-size: 42px;
    line-height: 50px;
    margin-bottom: 25px;
    background: -webkit-linear-gradient(left, #3779a9 30%, #079c56 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.seo-scale-brand .text-area p {
    font-family: Inter, sans-serif;
    color: #000 !important;
    margin-right: 12px;
    font-size: 16px;
    font-weight: 600;
}

.seo-scale-brand .form-area {
    padding: 70px 100px 150px 30px !important;
}

.seo-scale-brand label {
    font-size: 14px;
    margin-bottom: 0;
    color: #fcfcfc;
}

.seo-scale-brand input {
    background: 0 0;
    border: none;
    outline: 0;
    border-bottom: 1px solid #fcfcfc;
    border-radius: 0;
    color: #fff;
    padding: 3px 20px 3px 0;
    width: 87%;
    font-size: 12px;
}

.seo-scale-brand input:focus {
    background: 0 0;
    border: none;
    outline: 0;
    border-bottom: 1px solid #555;
    border-radius: 0;
    color: #fff;
}

.seo-scale-brand input ::placeholder {
    color: #555;
    font-size: 12px;
}

.seo-scale-brand label.checkbox-label {
    font-size: 14px;
    margin-bottom: 0;
    color: #fff;
}

.seo-scale-brand .col-md-6.checkboxx {
    margin-bottom: -20px;
    padding: 0;
}

.seo-scale-brand .form-area {
    background-color: #4a4a4a;
    color: #fff;
    padding: 40px 100px 0 40px;
}

.seo-scale-brand .seo-scale-brand-btn {
    margin-top: 25px !important;
}

@media (max-width: 600px) {
    .seo-scale-brand form {
        margin-top: 20px;
    }

    .seo-scale-brand .col-md-6.checkboxx {
        margin-bottom: -20px;
    }
}

.seo-banner .row {
    background-image: url(../images/JT1---SEO.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 30vh;
    padding: 20px 0;
    position: relative;
    bottom: 150px;
}

.seo-banner .text-area {
    margin-top: 25px;
    color: #fff;
}

.seo-banner .text-area h6 {
    font-size: 20px;
    margin-bottom: 10px;
    font-family: Inter;
}

.seo-banner .text-area h4 {
    font-size: 26px;
    font-weight: 800;
    font-family: Inter;
    text-align: left;
}

.seo-banner .text-area h4 img {
    max-width: 34px;
}

.seo-banner .text-area {
    margin-top: 25px;
    color: #fff;
}

.seo-banner .no1 {
    color: #fff;
    margin-top: 10px;
}

.seo-banner .no1 h6 {
    font-size: 50px;
    font-weight: 300;
    margin-bottom: 10px;
    font-family: Inter;
}

.seo-banner .no1 h4 {
    font-size: 45px;
    font-weight: 700;
    margin-bottom: -8px;
    font-family: Inter;
}

.seo-banner .text-area h3 {
    font-family: Inter;
    font-weight: 900;
    font-size: 36px;
    line-height: 40px;
    margin-bottom: 20px;
    background: -webkit-linear-gradient(right, #326b92, #2e8075);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.seo-banner .text-area .input-group input {
    margin-right: 20px;
    border-radius: 50px !important;
}

@media (max-width: 600px) {
    .seo-banner .row {
        background-image: url(../images/new-img3.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 80vh;
        padding: 20px 0;
        position: relative;
        bottom: -70px;
        text-align: center;
        margin: 0 auto;
    }
}

.seo-steps {
    padding: 50px 0 40px 0;
    background-color: #fff;
}

.seo-steps .row {
    overflow: hidden;
}

.seo-steps .content-item {
    padding: 20px;
    border-left: 1px solid #d4e9e6;
    margin: -1px;
}

.seo-steps .heading h1 {
    font-family: Inter, sans-serif;
    font-size: 46px;
    font-weight: 900;
    color: #000;
    margin-bottom: 5px;
    background: -webkit-linear-gradient(left, #326b92 30%, #04ae75 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.seo-steps .heading h6 {
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #5d5d5d;
    margin-bottom: 28px;
}

.seo-steps .heading p {
    font-family: Inter, sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #000;
    margin-bottom: 50px;
}

.seo-steps .content-item .text-area img {
    max-width: 80px;
}

.seo-steps .content-item .text-area .text-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 12px;
    color: #000;
    font-family: Poppins;
}

.seo-steps .content-item .text-area .text-content p {
    font-family: Poppins;
    color: #5d5d5d;
    font-size: 14px;
    font-weight: 400;
    margin: 0 10px 10px 10px;
    padding: 0;
}

.seo-steps .text-content p {
    font-family: Poppins;
    color: #5d5d5d;
    font-size: 14px;
    font-weight: 400;
    margin: 0 10px 10px 10px;
    padding: 0;
}

.seo-clientsays .heading h2 {
    font-family: Inter, sans-serif;
    margin-bottom: 30px;
    font-weight: 900;
    font-size: 52px;
    background: -webkit-linear-gradient(right, #316c91, #2e7f76);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.seo-clientsays .powered {
    margin-bottom: 18px;
}

.seo-clientsays .powered span {
    font-size: 18px;
    color: #000;
    font-weight: 400;
    margin-right: 8px;
}

.seo-clientsays .powered h5 {
    font-size: 20px;
    font-family: Inter;
    color: #000;
    font-weight: 700;
}

.seo-clientsays .powered .fa {
    color: #00b67a;
    margin-right: 8px;
    font-size: 20px;
    margin-top: 3px;
}

.seo-clientsays .client-reviews .col-lg-4 {
    margin-bottom: 20px;
}

.seo-clientsays .testinomial .five-star h6 {
    font-size: 16px;
    font-weight: 600;
    padding-top: 5px;
    font-family: Arial, Helvetica, sans-serif;
}

.seo-clientsays .testinomial .five-star span {
    color: #f19b12;
    margin-left: 6px;
    margin-bottom: 12px;
    font-size: 18px;
}

.seo-clientsays .testinomial .text-area p {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    font-family: poppins;
    margin-bottom: 12px;
}

.seo-clientsays .testinomial .text-area h6 {
    font-size: 18px;
    font-weight: 500;
    color: #000;
    font-family: poppins;
    margin-bottom: 12px;
}

.seo-clientsays .testinomial .verified img {
    object-fit: contain;
    margin-right: 6px;
}

.seo-clientsays .testinomial .verified h6 {
    padding-top: 6px;
    font-size: 15px;
}

section#clientssays {
    background-color: #e4e4e4;
}

.seo-clientsays #testinomial1 {
    display: none;
}

.header .social-ppc .fa {
    margin: 0 12px;
    font-size: 20px;
}

.header .social-ppc .fa-facebook {
    color: #000;
    font-size: 20px;
}

.header .social-ppc .fa-linkedin {
    color: #000;
    font-size: 20px;
}

.header .social-ppc .fa-instagram {
    color: #000;
    font-size: 20px;
}

.header .social-ppc .fa-twitter {
    color: #000;
    font-size: 20px;
}

.smm-hero {
    background-image: url(../images/smm-hero.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100vh;
}

.smm-hero .text-area {
    padding: 100px 0;
}

.smm-hero .text-area h6 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 12px;
    font-family: Inter;
    font-weight: 700;
    text-transform: uppercase;
}

.smm-hero .text-area h1 {
    font-size: 46px;
    margin-bottom: 12px;
    font-family: Inter;
    font-weight: 900;
    color: #fff;
    line-height: 50px;
}

.smm-hero .text-area p {
    font-size: 16px;
    color: #fff;
    margin-bottom: 20px;
    font-family: Inter;
    font-weight: 400;
}

.smm-hero .text-area .btn {
    line-height: 0;
    padding: 22px 40px;
    border-radius: 4px;
    transition: 0.5s;
    color: #fff;
    background: #d00202;
    font-size: 18px;
    font-weight: 400;
    outline: 0;
    border: none;
    width: 200px;
    border-radius: 50px;
}

.smm-hero .smm-hero-form {
    background-color: #fff !important;
    padding: 30px 24px;
    width: 65%;
    margin: 0 auto;
    margin-top: 60px;
    border-radius: 20px;
}

.smm-hero .smm-hero-form label {
    color: #000;
    font-size: 14px;
    font-weight: 400;
}

.smm-hero .smm-hero-form label span {
    color: #d00202;
    font-size: 14px;
    font-weight: 400;
}

.smm-hero .smm-hero-form ::placeholder {
    color: #000;
    font-size: 12px;
}

.smm-hero .smm-hero-form input {
    background-color: transparent;
    font-size: 12px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    border-radius: 0;
    color: #000;
}

.smm-hero .smm-hero-form form #options {
    background-color: transparent;
    width: 100%;
    color: #000;
    height: 30px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    font-size: 12px;
}

.smm-hero .smm-hero-form form option {
    color: #000;
    height: 30px;
}

.smm-hero .smm-hero-form input:focus {
    background-color: transparent;
    font-size: 14px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    border-radius: 0;
}

.smm-hero .heading h3 {
    color: #000;
    font-size: 20px;
    font-family: Inter;
    font-weight: 700;
}

.smm-hero .contact-area {
    margin-top: 16px;
}

.smm-hero .contact-area .icon img {
    margin-right: 8px;
}

.smm-hero .contact-area .num h6 {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    font-family: Inter;
}

.smm-hero .contact-area .num p {
    color: #fff;
    font-size: 14px;
    font-weight: 300;
}

.smm-digital-reviews .text-area {
    margin-top: 50px;
}

.smm-digital-reviews .text-area h3 {
    font-family: Inter, sans-serif;
    font-weight: 900;
    font-size: 48px;
    line-height: 48px;
    margin-bottom: 25px;
    background: -webkit-linear-gradient(left, #3779a9 30%, #079c56 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.smm-digital-reviews .text-area p {
    font-family: Inter, sans-serif;
    font-weight: 300;
    font-size: 16px;
    font-weight: 400;
    color: #515151;
    line-height: 25px;
    margin-bottom: 20px;
    padding-right: 50px;
}

.smm-digital-reviews .text-area .input-group input {
    margin-right: 20px;
    border-radius: 50px !important;
}

.smm-digital-reviews .text-area .input-group .btn {
    background-color: #d00202;
    border: none;
    outline: 0;
    border-radius: 50px !important;
}

img.img-fluid.seo-map {
    max-width: 60%;
}

.smm-game .heading h2 {
    font-size: 42px;
    font-family: Inter;
    font-weight: 900;
    background: -webkit-linear-gradient(left, #3779a9 30%, #079c56 70%);
    margin-bottom: 20px;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.smm-game .heading p {
    color: #000;
    font-size: 16px;
    font-family: Inter;
    font-weight: 300;
    padding: 10px 90px;
}

.smm-game .col-lg-4 {
    margin-bottom: 20px;
}

.smm-game .bg1 {
    background-image: url(../image/bg1.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 500px;
    border-radius: 50px;
    padding: 100px 50px;
}

.smm-game .bg2 {
    background-image: url(../image/bg2.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 500px;
    border-radius: 50px;
    padding: 100px 50px;
}

.smm-game .bg3 {
    background-image: url(../image/bg3.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 500px;
    border-radius: 50px;
    padding: 100px 50px;
}

.smm-game .bg5 {
    background-image: url(../image/bg4.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 500px;
    border-radius: 50px;
    padding: 100px 50px;
}

.smm-game .bg6 {
    background-image: url(../image/bg5.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 500px;
    border-radius: 50px;
    padding: 100px 50px;
}

.smm-game .box-area:hover {
    box-shadow: 0 0 25px rgba(175, 218, 191, 0.5);
}

.smm-game .box-area.bg1:hover {
    box-shadow: 0 0 25px rgb(57 120 172);
}

.smm-game.box-area.bg2:hover {
    box-shadow: 0 0 25px rgb(52 133 154);
}

.smm-game.box-area.bg3:hover {
    box-shadow: 0 0 25px rgb(52 142 140);
}

.smm-game.box-area.bg5:hover {
    box-shadow: 0 0 25px rgb(75 209 29);
}

.smm-game.box-area.bg6:hover {
    box-shadow: 0 0 25px rgb(220 223 17);
}

.smm-game .box-area {
    background-color: #fff;
}

.smm-game .box-area img {
    margin-bottom: 25px;
}

.smm-game .box-area h3 {
    margin-bottom: 12px;
    font-family: Inter;
    font-weight: 700;
    font-size: 24px;
}

.smm-game .box-area p {
    font-size: 17px;
    font-family: Inter;
    font-weight: 400;
}

.smm-game .box-area:hover {
    box-shadow: 0 0 10px rgba(175, 218, 191, 0.5);
}

.smm-game .box-area.bg1:hover {
    box-shadow: 0 0 10px rgb(57 120 172);
}

.smm-game .box-area.bg2:hover {
    box-shadow: 0 0 10px rgb(52 133 154);
}

.smm-game .box-area.bg3:hover {
    box-shadow: 0 0 10px rgb(52 142 140);
}

.smm-game .box-area.bg4:hover {
    box-shadow: 0 0 10px rgb(47 155 116);
}

.smm-game .box-area.bg5:hover {
    box-shadow: 0 0 10px rgb(75 209 29);
}

.smm-game .box-area.bg6:hover {
    box-shadow: 0 0 10px rgb(220 223 17);
}

.smm-digital-marketing {
    background-color: #fcfcfc;
}

.smm-digital-marketing .text-area h4 {
    font-family: Inter, sans-serif;
    font-weight: 500;
    font-size: 24px;
    color: #000;
    line-height: 30px;
}

.smm-digital-marketing .text-area {
    margin-top: 50px;
}

.smm-digital-marketing.text-area .input-group input {
    margin-right: 20px;
}

.smm-digital-marketing .text-area .input-group .btn {
    background-color: #d00202;
    border: none;
    outline: 0;
}

.smm-digital-marketingg .text-area {
    margin-top: 50px;
}

.smm-digital-marketing .text-area h3 {
    font-family: Inter, sans-serif;
    font-weight: 900;
    font-size: 48px;
    line-height: 48px;
    margin-bottom: 25px;
    background: -webkit-linear-gradient(left, #326b92 30%, #079c56 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.smm-digital-marketing .text-area p {
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #515151;
    line-height: 25px;
    margin-bottom: 40px;
    padding-right: 50px;
}

.smm-digital-marketing .text-area .input-group input {
    background: 0 0 !important;
    padding: 6px 20px !important;
    margin-right: 20px;
    border-radius: 50px !important;
}

.smm-digital-marketing .text-area .input-group .btn {
    background-color: #d00202;
    border: none;
    outline: 0;
    border-radius: 50px !important;
}

.smm-middle-banner {
    background-image: url(../images/bg.png);
}

.smm-middle-banner .counter-box {
    border-left: 2px solid #c5c4c4;
}

.smm-middle-banner .firstchild {
    border-left: none !important;
}

.smm-middle-banner .counter-box .numbers-img img {
    margin-right: 25px;
    object-fit: contain;
}

.smm-middle-banner .counter-box .numbers-img h3 {
    font-family: Inter, sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    padding-top: 12px;
}

.numbers .counter-box p {
    font-weight: 500;
    font-size: 14px;
    margin-top: 8px;
    color: #000;
}

.smm-middle-banner .counter-box p {
    font-size: 14px;
    color: #fff !important;
    padding-top: 12px;
    font-family: Inter;
}

.smm-social .text-area h3 {
    font-family: Inter, sans-serif;
    font-weight: 900;
    font-size: 46px;
    line-height: 42px;
    margin-bottom: 25px;
    background: -webkit-linear-gradient(left, #326b92 20%, #02a04e 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.smm-social .text-area h4 {
    font-family: Inter, sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 22px;
    margin-bottom: 10px;
    color: #5d5d5d;
}

.smm-social .text-area p {
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #515151;
    line-height: 25px;
    margin-bottom: 20px;
    padding-right: 50px;
}

.smm-social .text-area {
    margin-top: 50px;
}

.smm-social .text-area .input-group input {
    margin-right: 20px;
}

.smm-social .text-area .input-group .btn {
    background-color: #d00202;
    border: none;
    outline: 0;
    border-radius: 50px !important;
}

.smm-social .img-fluid {
    margin-top: 60px;
}

.smm-social-insta .row {
    background-color: #fbf2f4;
    border-radius: 20px;
    margin-bottom: -30px;
    padding: 25px 0;
}

.smm-social-insta .bannerimage {
    width: 75% !important;
    margin-top: -5em;
    margin-left: 40px;
}

.smm-social-insta h4 {
    font-family: Inter, sans-serif;
    font-weight: 700;
    font-size: 25px;
    line-height: 50px;
    margin-bottom: 12px;
    color: #515151;
}

.smm-social-insta p {
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #515151;
    line-height: 25px;
    margin-bottom: 35px;
    padding-right: 50px;
}

@media (max-width: 600px) {
    .smm-social-insta .row {
        background-image: url(../images/new-img3.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 80vh;
        padding: 20px 0;
        position: relative;
        bottom: -70px;
        text-align: center;
        margin: 0 auto;
    }
}

img.banner.image {
    float: right;
    padding-top: 30%;
}

h3.count {
    font-size: 35px;
    font-family: Inter;
    font-weight: 700;
    margin-left: -18%;
}

h3.countpecentage {
    margin-top: 5%;
    font-size: 35px;
    font-family: Inter;
    font-weight: 700;
    margin-left: 6%;
}

.smm-social-facebook .row {
    background-color: #f0f8ff;
    border-radius: 20px;
    margin-bottom: -30px;
    padding: 25px 0;
}

.smm-social-facebook .bannerimage {
    width: 75% !important;
    margin-top: -5em;
    margin-left: 40px;
}

.smm-social-facebook h4 {
    font-family: Inter, sans-serif;
    font-weight: 700;
    font-size: 25px;
    line-height: 50px;
    margin-bottom: 12px;
    color: #515151;
}

.smm-social-facebook p {
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #515151;
    line-height: 25px;
    margin-bottom: 35px;
    padding-right: 50px;
}

@media (max-width: 600px) {
    .smm-social-facebook .row {
        background-image: url(../images/new-img3.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 80vh;
        padding: 20px 0;
        position: relative;
        bottom: -70px;
        text-align: center;
        margin: 0 auto;
    }
}

img.banner.image {
    float: right;
    padding-top: 30%;
}

.smm-social-youtube .row {
    background-color: #feebeb;
    border-radius: 20px;
    margin-bottom: -30px;
    padding: 25px 0;
}

.smm-social-youtube .bannerimage {
    width: 75% !important;
    margin-top: -5em;
    margin-left: 40px;
}

.smm-social-youtube h4 {
    font-family: Inter, sans-serif;
    font-weight: 700;
    font-size: 25px;
    line-height: 50px;
    margin-bottom: 12px;
    color: #515151;
}

.smm-social-youtube p {
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #515151;
    line-height: 25px;
    margin-bottom: 35px;
    padding-right: 50px;
}

@media (max-width: 600px) {
    .smm-social-youtube .row {
        background-image: url(../images/new-img3.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 80vh;
        padding: 20px 0;
        position: relative;
        bottom: -70px;
        text-align: center;
        margin: 0 auto;
    }
}

img.banner.image {
    float: right;
    padding-top: 30%;
}

.smm-social-linkedin .row {
    background-color: #f0f8ff;
    border-radius: 20px;
    margin-bottom: -30px;
    padding: 25px 0;
}

.smm-social-linkedin .bannerimage {
    width: 75% !important;
    margin-top: -5em;
    margin-left: 40px;
}

.smm-social-linkedin h4 {
    font-family: Inter, sans-serif;
    font-weight: 700;
    font-size: 25px;
    line-height: 50px;
    margin-bottom: 12px;
    color: #515151;
}

.smm-social-linkedin p {
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #515151;
    line-height: 25px;
    margin-bottom: 35px;
    padding-right: 50px;
}

@media (max-width: 600px) {
    .smm-social-linkedin .row {
        background-image: url(../images/new-img3.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 80vh;
        padding: 20px 0;
        position: relative;
        bottom: -70px;
        text-align: center;
        margin: 0 auto;
    }
}

img.banner.image {
    float: right;
    padding-top: 30%;
}

.smm-soc-media-right .seo-bg {
    width: 100%;
    height: 110vh;
    padding: 60px 80px;
}

.smm-soc-media-right .text-area h2 {
    background: -webkit-linear-gradient(right, #62b666 20%, #0f9764 60%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: Inter;
    font-weight: 900;
    font-size: 40px;
    line-height: 52px;
    margin-bottom: 20px;
}

.smm-soc-media-right .seo-gd-bg {
    width: 100%;
    height: 110vh;
    padding: 60px 60px 60px 20px;
}

.smm-soc-media-right .seo-gd-bg .point {
    margin-bottom: 26px;
}

.smm-soc-media-right .seo-gd-bg .point .no1 {
    position: relative;
    right: 45px;
}

.smm-soc-media-right .seo-gd-bg .point .no1 h6 {
    background-color: #fff;
    color: #000;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 700;
    padding: 12px 18px;
}

.smm-soc-media-right .seo-gd-bg .point .text-wrapper h5 {
    color: #222;
    font-family: Inter;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.smm-soc-media-right .seo-gd-bg .point .text-wrapper h5 img {
    margin-right: 6px;
}

.smm-soc-media-right .seo-gd-bg .point .text-wrapper p {
    color: #5d5d5d;
    font-family: Inter;
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 20px;
    padding-right: 60px;
}

.smm-soc-media-right .heading h2 {
    font-family: Inter, sans-serif;
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 5px;
    background: -webkit-linear-gradient(left, #3779a9 30%, #079c56 70%);
    line-height: 46px;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.smm-soc-media-right .heading p {
    padding: 0 70px;
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-weight: 400;
}

.smm-soc-media-right .heading h6 {
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #a79494;
    margin-bottom: 22px;
}

.smm-soc-media-right .seo-bg .point .text-wrapper h5 {
    color: #222;
    font-family: Inter;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.smm-soc-media-right .text-area p {
    color: #5d5d5d;
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 20px;
}

.smm-soc-media-right .seo-bg .point .text-wrapper h5 img {
    margin-right: 6px;
}

.smm-soc-media-right {
    background-image: url(../images/seo-bg2.png);
    width: 100%;
    height: auto;
    background-position: center;
}

.smm-media-management .text-area {
    margin-top: 20px;
}

.smm-media-management .text-area h3 {
    font-family: Inter, sans-serif;
    font-weight: 900;
    font-size: 46px;
    line-height: 55px;
    margin-bottom: 16px;
    background: -webkit-linear-gradient(left, #3779a9 30%, #079c56 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.smm-media-management .text-area h5 {
    font-family: Inter, sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #515151;
    line-height: 22px;
    margin-bottom: 12px;
}

.smm-media-management .text-area p {
    font-family: Inter, sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #5d5d5d;
    line-height: 22px;
    margin-bottom: 20px;
    padding-right: 50px;
}

.smm-media-management img {
    margin-top: 30px;
}

.smm-get-started {
    background-image: url(../images/smm-bg.png);
    background-size: cover;
    background-position: center;
    width: 100%;
    height: auto;
}

.smm-get-started .text-area h2 {
    font-family: Inter, sans-serif;
    font-weight: 900;
    font-size: 42px;
    line-height: 50px;
    margin-bottom: 12px;
    background: -webkit-linear-gradient(left, #3779a9 30%, #079c56 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.smm-get-started .text-area h4 {
    font-family: Inter, sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #222;
    line-height: 20px;
    margin-bottom: 30px;
}

.smm-get-started .points {
    margin: 24px 0;
    padding: 0 20px;
}

.smm-get-started .points h5 {
    font-family: Inter, sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #5d5d5d;
    margin-bottom: 12px;
}

.smm-get-started .points p {
    font-family: Inter;
    font-size: 15px;
    font-weight: 400;
    color: #5d5d5d;
}

.smm-get-started .points ul li {
    list-style: disc;
    margin-left: 16px;
}

.smm-get-started .points ul li::marker {
    color: #00b67a;
    font-size: 16px;
}

.smm-ads .text-area {
    margin-top: 50px;
}

.smm-ads .text-area h3 {
    font-family: Inter, sans-serif;
    font-weight: 900;
    font-size: 42px;
    line-height: 50px;
    margin-bottom: 25px;
    background: -webkit-linear-gradient(left, #3779a9 30%, #079c56 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.smm-ads .text-area h5 {
    font-family: Inter, sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #515151;
    line-height: 20px;
    margin-bottom: 6px;
}

.smm-ads .text-area p {
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #515151;
    line-height: 20px;
    margin-bottom: 20px;
    padding-right: 50px;
}

.smm-ads .text-area h4 {
    font-family: Inter, sans-serif;
    font-size: 25px;
    font-weight: 600;
    color: #515151;
    line-height: 28px;
    margin-top: 40px;
    text-align: left;
    padding-right: 50px;
}

.smm-ads p {
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #515151;
    line-height: 20px;
    margin-bottom: 8px;
    margin-top: 20px;
}

.smm-scale-brand .text-side {
    padding: 0 100px;
    background-color: #fcfcfc;
}

.smm-scale-brand .text-area {
    padding: 100px 0;
}

.smm-scale-brand .text-area h2 {
    font-family: Inter, sans-serif;
    font-weight: 900;
    font-size: 42px;
    line-height: 50px;
    margin-bottom: 25px;
    background: -webkit-linear-gradient(left, #3779a9 30%, #079c56 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.smm-scale-brand .text-area p {
    font-family: Inter, sans-serif;
    color: #000 !important;
    margin-right: 12px;
    font-size: 16px;
    font-weight: 600;
}

.smm-scale-brand img {
    max-width: 400px;
    height: auto;
}

.smm-scale-brand label {
    font-size: 14px;
    margin-bottom: 0;
    color: #fcfcfc;
}

.smm-scale-brand input {
    background: 0 0;
    border: none;
    outline: 0;
    border-bottom: 1px solid #fcfcfc;
    border-radius: 0;
    color: #fff;
    padding: 10px 20px 10px 0;
    width: 90%;
}

.smm-scale-brand input:focus {
    background: 0 0;
    border: none;
    outline: 0;
    border-bottom: 1px solid #555;
    border-radius: 0;
    color: #fff;
}

.smm-scale-brand input ::placeholder {
    color: #555;
}

.smm-scale-brand label.checkbox-label {
    font-size: 14px;
    margin-bottom: 0;
    color: #fff;
}

.smm-scale-brand .col-md-6.checkboxx {
    margin-bottom: -16px;
    padding: 0;
}

.smm-scale-brand .form-area {
    background-color: #4a4a4a;
    color: #fff;
    padding: 50px 100px 0 40px;
}

@media (max-width: 600px) {
    .smm-scale-brand form {
        margin-top: 20px;
    }

    .smm-scale-brand .col-md-6.checkboxx {
        margin-bottom: -20px;
    }
}

.smm-grow {
    background-image: url(../images/bg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 40vh;
    padding: 40px 0;
}

.smm-grow .text-area h2 {
    font-family: Inter, sans-serif;
    font-weight: 900;
    font-size: 36px;
    line-height: 40px;
    margin-bottom: 25px;
    color: #fff;
}

.smm-grow .text-area .input-group input {
    padding: 6px 20px !important;
    margin-right: 20px;
    border-radius: 50px !important;
    color: #fff;
}

.smm-grow .text-area .input-group .btn {
    border-radius: 50px !important;
    background-color: #d00202;
}

.atlanta-hero {
    background-image: url(../images/atlana/hero.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100vh;
}

.atlanta-hero .text-area {
    padding: 100px 0;
}

.atlanta-hero .text-area h6 {
    font-size: 18px;
    color: #ffc100;
    margin-bottom: 8px;
    font-family: Poppins;
    font-weight: 700;
    text-shadow: #ffc100;
}

.atlanta-hero .text-area a {
    font-size: 15px;
    color: #ffc100;
    margin-bottom: 8px;
    font-family: Poppins;
    font-weight: 600;
    text-decoration: underline;
    text-transform: uppercase;
}

.atlanta-hero .text-area h1 {
    font-size: 46px;
    margin-bottom: 12px;
    font-family: Inter;
    font-weight: 900;
    color: #fff;
    line-height: 50px;
}

.atlanta-hero .text-area p {
    font-size: 15px;
    color: #fff;
    margin-bottom: 20px;
    font-family: Inter;
    font-weight: 400;
}

.atlanta-hero .text-area .btn {
    line-height: 0;
    padding: 22px 40px;
    border-radius: 4px;
    transition: 0.5s;
    color: #fff;
    background: #d00202;
    font-size: 18px;
    font-weight: 500;
    outline: 0;
    border: none;
    width: 200px;
    border-radius: 50px;
}

.atlanta-hero .atlanta-hero-form {
    background-color: #fff !important;
    padding: 30px 24px;
    width: 65%;
    margin: 0 auto;
    margin-top: 60px;
    border-radius: 20px;
}

.atlanta-hero .atlanta-hero-form label {
    color: #000;
    font-size: 14px;
    font-weight: 400;
}

.atlanta-hero .atlanta-hero-form label span {
    color: #d00202;
    font-size: 14px;
    font-weight: 400;
}

.atlanta-hero .atlanta-hero-form ::placeholder {
    color: #000;
    font-size: 12px;
}

.atlanta-hero .atlanta-hero-form input {
    background-color: transparent;
    font-size: 12px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    border-radius: 0;
    color: #000;
}

.atlanta-hero .atlanta-hero-form form #options {
    background-color: transparent;
    width: 100%;
    color: #000;
    height: 30px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    font-size: 12px;
}

.atlanta-hero .atlanta-hero-form form option {
    color: #000;
    height: 30px;
}

.atlanta-hero .atlanta-hero-form input:focus {
    background-color: transparent;
    font-size: 14px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    border-radius: 0;
}

.atlanta-hero .heading h3 {
    color: #000;
    font-size: 20px;
    font-family: Inter;
    font-weight: 700;
}

.atlanta-hero .contact-area {
    margin-top: 16px;
}

.atlanta-hero .contact-area .icon img {
    margin-right: 8px;
}

.atlanta-hero .contact-area .num h6 {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    font-family: Inter;
}

.atlanta-hero .contact-area .num p {
    color: #fff;
    font-size: 14px;
    font-weight: 300;
}

@media (max-width: 601px) {
    .seo-hero-map {
        height: calc(70vh - 70px);
        background: url(../images/dallas-map.png);
        background-position: 20% 60%;
        background-repeat: no-repeat;
        background-size: contain;
    }

    .seo-hero .seo-hero-form {
        background-color: #fff !important;
        padding: 30px 40px;
        width: 100%;
        margin-top: 0 !important;
    }
}

.clients-atlanta {
    padding: 50px 0;
}

.clients-atlanta .text-area {
    margin-bottom: 20px;
}

.clients-atlanta .text-area h3 {
    font-family: Inter, sans-serif;
    font-weight: 900;
    font-size: 44px;
    line-height: 55px;
    margin-bottom: 12px;
    background: -webkit-linear-gradient(left, #367aa7 30%, #049e52 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.clients-atlanta .map-img img {
    max-width: 800px;
    position: relative;
}

.clients-atlanta .one {
    position: absolute;
    top: 100px;
    left: 220px;
    color: #5cc004;
}

.clients-atlanta .two {
    position: absolute;
    bottom: 280px;
    left: 400px;
    color: #5cc004;
}

.clients-atlanta .three {
    position: absolute;
    top: 200px;
    left: 500px;
    color: #5cc004;
}

.clients-atlanta .four {
    position: absolute;
    top: 220px;
    left: 250px;
    color: #5cc004;
}

.clients-atlanta .five {
    position: absolute;
    bottom: 200px;
    right: 650px;
    color: #5cc004;
}

img.img-fluid-newcity {
    max-width: 7px;
    width: 20%;
    height: 18px;
    margin-top: 2px;
}

h2.verifived {
    font-family: Inter;
    font-size: 9px;
    font-weight: 600;
    font-style: italic;
    margin-top: 5px;
    margin-left: 4px;
}

img.img-fluid-reviews {
    width: 60%;
    height: 18px;
    margin-top: -17px;
    float: right;
    margin-right: 0;
}

h2.powered {
    font-family: Inter;
    font-size: 9px;
    font-weight: 600;
    font-style: italic;
    margin-top: 5px;
    margin-right: 86px;
}

img.img-fluid-avater {
    max-width: 7px;
    width: 13%;
    height: 40px;
    margin-top: -10px;
}

h2.heading-avater {
    font-family: 'Inter', sans-serif !important;
    font-size: 15px;
    font-weight: 700;
    margin-top: -6px;
    margin-left: -35px;
    width: 200px;
    color: #5c5c5c;
}

span.rating {
    font-family: 'Inter', sans-serif !important;
    font-size: 15px;
    color: #000;
}

.checkededs {
    float: left;
    margin-left: 54px;
    margin-top: -12%;
}

span.fa.fa-star.checked {
    color: #f29b11;
}

.middlecontentsss:before {
    background-image: url(../image/before.png);
    background-size: 26px 20px;
    display: inline-block;
    width: 100%;
    height: 20px;
    content: "";
    background-repeat: repeat-y;
    margin-left: 0;
    margin-top: -13px;
}

.middlecontentsss:after {
    background-image: url(../image/after.png);
    background-size: 26px 20px;
    width: 100%;
    height: 20px;
    content: "";
    background-repeat: repeat-y;
    margin-right: -90%;
    margin-top: 0;
    float: right;
}

.middlecontentsss {
    margin-top: -9px;
}

h4.middlecontent {
    font-size: 14px;
    font-family: Inter;
    text-align: justify;
    margin-left: 15px;
    margin-right: 15px;
}

.popup-container {
    position: absolute;
    top: 0;
}

.popup-box {
    margin: 0 33%;
    margin-left: -250px;
    width: 100%;
    padding: 20px 25px;
    z-index: 1000;
    margin: auto;
    top: 0;
    background-color: #ffff;
    display: none;
    box-shadow: 2px 3px 10px #898787;
    border-radius: 14px;
}

.popup-box div {
    clear: both;
}

.popup-box h3 {
    display: inline;
}

.popup-box nav.close {
    float: right;
    font-size: 20px;
    color: #000;
    background: green;
    z-index: 9999;
}

.popuptwo-container {
    position: absolute;
    top: 0;
    padding: 12px 30%;
}

.popup-box-two {
    margin: 0 33%;
    margin-left: -250px;
    width: 100%;
    padding: 20px 25px;
    z-index: 1000;
    margin: auto;
    top: 0;
    background-color: #ffff;
    display: none;
    box-shadow: 2px 3px 10px #898787;
    border-radius: 14px;
}

.popup-box-two div {
    clear: both;
}

.popup-box-two h3 {
    display: inline;
}

.popup-box-two nav.close {
    float: right;
    font-size: 20px;
    color: #000;
    background: green;
    z-index: 9999;
}

.popupthree-container {
    position: absolute;
    top: 0;
    padding: 12px 30%;
}

.popup-box-three {
    margin: 0 33%;
    margin-left: -250px;
    width: 100%;
    padding: 20px 25px;
    z-index: 1000;
    margin: auto;
    top: 0;
    background-color: #ffff;
    display: none;
    box-shadow: 2px 3px 10px #898787;
    border-radius: 14px;
}

.popup-box-three div {
    clear: both;
}

.popup-box-three h3 {
    display: inline;
}

.popup-box-three nav.close {
    float: right;
    font-size: 20px;
    color: #000;
    background: green;
    z-index: 9999;
}

.popupfour-container {
    position: absolute;
    top: 0;
    padding: 12px 16%;
}

.popup-box-four {
    margin: 0 33%;
    margin-left: -250px;
    width: 100%;
    padding: 20px 25px;
    z-index: 1000;
    margin: auto;
    top: 0;
    background-color: #ffff;
    display: none;
    box-shadow: 2px 3px 10px #898787;
    border-radius: 14px;
}

.popup-box-four div {
    clear: both;
}

.popup-box-four h3 {
    display: inline;
}

.popup-box-four nav.close {
    float: right;
    font-size: 20px;
    color: #000;
    background: green;
    z-index: 9999;
}

.popupfive-container {
    position: absolute;
    top: 0;
    padding: 12px 28%;
}

.popup-box-five {
    margin: 0 33%;
    margin-left: -250px;
    width: 100%;
    padding: 20px 25px;
    z-index: 1000;
    margin: auto;
    top: 0;
    background-color: #ffff;
    display: none;
    box-shadow: 2px 3px 10px #898787;
    border-radius: 14px;
}

.popup-box-five div {
    clear: both;
}

.popup-box-five h3 {
    display: inline;
}

.popup-box-five nav.close {
    float: right;
    font-size: 20px;
    color: #000;
    background: green;
    z-index: 9999;
}

.atlanta-digital-marketing {
    background-color: #fcfcfc;
}

.atlanta-digital-marketing .text-area {
    margin-top: 50px;
}

.atlanta-digital-marketing .text-area h3 {
    font-family: Inter, sans-serif;
    font-weight: 900;
    font-size: 30px;
    line-height: 34px;
    margin-bottom: 25px;
    background: -webkit-linear-gradient(left, #367aa7 30%, #049e52 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.atlanta-digital-marketing .text-area p {
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #515151;
    line-height: 25px;
    margin-bottom: 20px;
    padding-right: 50px;
}

.atlanta-digital-marketing .text-area .input-group input {
    margin-right: 20px;
    border-radius: 50px !important;
    border: none;
}

.atlanta-digital-marketing .text-area .input-group .btn {
    background-color: #d00202;
    border: none;
    outline: 0;
    border-radius: 50px !important;
}

.atlanta-choose-jumto1 .text-area h3 {
    font-family: Inter, sans-serif;
    font-weight: 900;
    font-size: 40px;
    line-height: 45px;
    margin-bottom: 16px;
    background: -webkit-linear-gradient(left, #367aa7 30%, #049e52 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.atlanta-choose-jumto1 .text-area p {
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #515151;
    line-height: 25px;
    margin-bottom: 20px;
    padding-right: 50px;
}

.atlanta-choose-jumto1 .text-area {
    margin-top: 50px;
}

.atlanta-choose-jumto1 .text-area .input-group input {
    margin-right: 20px;
}

.atlanta-choose-jumto1 .text-area .input-group .btn {
    background-color: #d00202;
    border: none;
    outline: 0;
    border-radius: 50px;
}

.atlanta-faq {
    background: url(../images/atlana/faq.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100vh;
}

.atlanta-faq .section-title h2 {
    font-family: Inter, sans-serif;
    font-weight: 900;
    font-size: 40px;
    line-height: 45px;
    background: -webkit-linear-gradient(left, #367aa7 20%, #049e52 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-left: 80px;
    margin-bottom: 20px;
}

.atlanta-faq .faq-list {
    padding: 0 70px;
}

.atlanta-faq .faq-list ul {
    padding: 0;
    list-style: none;
}

.atlanta-faq .faq-list li+li {
    margin-top: 15px;
}

.atlanta-faq .faq-list li {
    padding: 20px 0;
    background: #fcfcfc;
    position: relative;
    padding: 12px 32px;
    border-radius: 10px;
}

.atlanta-faq .faq-list a {
    display: block;
    position: relative;
    font-family: 'Inter', sans-serif !important;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    padding: 0;
    outline: 0;
    cursor: pointer;
}

.atlanta-faq .faq-list .icon-close,
.atlanta-faq .faq-list .icon-show {
    font-size: 24px;
    position: absolute;
    right: 0;
    top: 0;
    color: #040404;
}

.atlanta-faq .faq-list p {
    margin-bottom: 0;
    padding: 10px 0 0 0;
    font-size: 13px;
    color: #393c3d;
}

.atlanta-faq .faq-list .icon-show {
    display: none;
}

.atlanta-faq .faq-list a.collapsed {
    color: #7a7a7a;
}

.atlanta-faq .faq-list a.collapsed:hover {
    color: #95c11e;
}

.atlanta-faq .faq-list a.collapsed .icon-show {
    display: inline-block;
    font-size: 16px;
    margin-top: 4px;
}

.atlanta-faq .faq-list .fa-chevron-up:before {
    font-size: 16px;
    margin-top: 4px;
}

.atlanta-faq .faq-list a.collapsed .icon-close {
    display: none;
}

@media (max-width: 1200px) {
    .atlanta-faq .faq-list {
        padding: 0;
    }
}

.atlanta-game .heading h2 {
    font-size: 40px;
    font-family: Inter;
    font-weight: 900;
    background: -webkit-linear-gradient(left, #326b92 30%, #049e52 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    line-height: 46px;
}

.atlanta-game .heading h6 {
    color: #535353;
    font-size: 18px;
    font-family: Inter;
    font-weight: 400;
    padding: 10px 90px;
    margin-bottom: 24px;
}

.atlanta-game .col-lg-4 {
    margin-bottom: 10px;
}

.atlanta-game .bg1 {
    background-image: url(../images/atlana/1.png);
    background-repeat: no-repeat;
    background-position: 98% 20%;
    padding: 35px 10px;
    margin-bottom: 10px;
}

.atlanta-game .bg2 {
    background-image: url(../images/atlana/2.png);
    background-repeat: no-repeat;
    background-position: 98% 20%;
    padding: 35px 10px;
    margin-bottom: 10px;
}

.atlanta-game .bg3 {
    background-image: url(../images/atlana/3.png);
    background-repeat: no-repeat;
    background-position: 98% 20%;
    padding: 35px 10px;
    margin-bottom: 10px;
}

.atlanta-game .bg4 {
    background-image: url(../images/atlana/4.png);
    background-repeat: no-repeat;
    background-position: 98% 20%;
    padding: 35px 10px;
    margin-bottom: 10px;
}

.atlanta-game .bg5 {
    background-image: url(../images/atlana/5.png);
    background-repeat: no-repeat;
    background-position: 98% 20%;
    padding: 35px 10px;
    margin-bottom: 10px;
}

.atlanta-game .bg6 {
    background-image: url(../images/atlana/6.png);
    background-repeat: no-repeat;
    background-position: 98% 20%;
    padding: 35px 10px;
    margin-bottom: 10px;
}

.atlanta-game .bg7 {
    background-image: url(../images/atlana/7.png);
    background-repeat: no-repeat;
    background-position: 98% 20%;
    padding: 35px 10px;
    margin-bottom: 10px;
}

.atlanta-game .bg8 {
    background-image: url(../images/atlana/8.png);
    background-repeat: no-repeat;
    background-position: 98% 20%;
    padding: 35px 10px;
    margin-bottom: 10px;
}

.atlanta-game .bg9 {
    background-image: url(../images/atlana/9.png);
    background-repeat: no-repeat;
    background-position: 98% 20%;
    padding: 35px 10px;
    margin-bottom: 10px;
}

.atlanta-game .box-area:hover {
    box-shadow: 0 0 10px rgba(175, 218, 191, 0.5);
}

.atlanta-game .box-area.bg1:hover {
    box-shadow: 0 0 10px rgb(57 120 172);
}

.atlanta-game .box-area.bg2:hover {
    box-shadow: 0 0 10px rgb(52 133 154);
}

.atlanta-game .box-area.bg3:hover {
    box-shadow: 0 0 10px rgb(52 142 140);
}

.atlanta-game .box-area.bg4:hover {
    box-shadow: 0 0 10px rgb(47 155 116);
}

.atlanta-game .box-area.bg5:hover {
    box-shadow: 0 0 10px rgb(75 209 29);
}

.atlanta-game .box-area.bg6:hover {
    box-shadow: 0 0 10px rgb(220 223 17);
}

.atlanta-game .box-area.bg7:hover {
    box-shadow: 0 0 10px rgb(220 213 17);
}

.atlanta-game .box-area.bg8:hover {
    box-shadow: 0 0 10px rgb(220 223 17);
}

.atlanta-game .box-area.bg9:hover {
    box-shadow: 0 0 10px rgb(20 223 17);
}

@font-face {
    font-family: CustomFont;
    src: url(../fonts/Neurial_Grotesk/NeurialGrotesk-Bold.otf);
}

.atlanta-game .box-area {
    background-color: #fff;
    width: 310px;
}

.atlanta-game .box-area img {
    margin-bottom: 10px;
    max-width: 50px;
}

.atlanta-game .box-area h3 {
    margin-bottom: 8px;
    font-family: CustomFont;
    font-weight: 700;
    font-size: 16px;
}

.atlanta-game .box-area p {
    font-size: 14px;
    font-family: Inter;
    font-weight: 400;
    padding: 0 20px;
}

.atlanta-scale-brand .text-side img {
    margin-top: -30px;
    max-width: 300px;
    margin-left: 100px;
}

.atlanta-scale-brand .text-area {
    padding: 100px 0;
}

.atlanta-scale-brand .text-area h2 {
    font-family: Inter, sans-serif;
    font-weight: 900;
    font-size: 42px;
    line-height: 50px;
    margin-bottom: 25px;
    background: -webkit-linear-gradient(left, #3779a9 30%, #079c56 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.atlanta-scale-brand .text-area p {
    font-family: Inter, sans-serif;
    color: #000 !important;
    margin-right: 12px;
    font-size: 16px;
    font-weight: 600;
}

.atlanta-scale-brand .form-area {
    padding: 70px 100px 150px 30px !important;
}

.atlanta-scale-brand label {
    font-size: 14px;
    margin-bottom: 0;
    color: #fcfcfc;
}

.atlanta-scale-brand input {
    background: 0 0;
    border: none;
    outline: 0;
    border-bottom: 1px solid #fcfcfc;
    border-radius: 0;
    color: #fff;
    padding: 3px 20px 3px 0;
    width: 100%;
    font-size: 12px;
}

.atlanta-scale-brand input:focus {
    background: 0 0;
    border: none;
    outline: 0;
    border-bottom: 1px solid #555;
    border-radius: 0;
    color: #fff;
}

.atlanta-scale-brand ::placeholder {
    color: #fff !important;
    font-size: 12px;
}

.atlanta-scale-brand label.checkbox-label {
    font-size: 14px;
    margin-bottom: 0;
    color: #fff;
}

.atlanta-scale-brand .col-md-6.checkboxx {
    margin-bottom: -20px;
    padding: 0;
}

.atlanta-scale-brand .form-area {
    background-color: #387ba8;
    color: #fff;
    padding: 40px 100px 0 40px;
}

.atlanta-scale-brand .seo-scale-brand-btn {
    margin-top: 25px !important;
}

.atlanta-scale-brand .atlanta-btn {
    background: #d00202;
    border-radius: 50px !important;
    border: 0;
    padding: 8px 30px;
    color: #fff;
    transition: 0.4s;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    width: 100%;
    font-family: poppins;
}

@media (max-width: 600px) {
    .atlanta-scale-brand form {
        margin-top: 20px;
    }

    .atlanta-scale-brand .col-md-6.checkboxx {
        margin-bottom: -20px;
    }
}

.atlanta-banner .row {
    background-image: url(../images/JT1---SEO.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 30vh;
    padding: 20px 0;
    margin-top: -100px;
}

.atlanta-banner .text-area {
    margin-top: 25px;
    color: #fff;
}

.atlanta-banner .text-area h6 {
    font-size: 20px;
    margin-bottom: 10px;
    font-family: Inter;
}

.atlanta-banner .text-area h4 {
    font-size: 26px;
    font-weight: 800;
    font-family: Inter;
    text-align: left;
}

.atlanta-banner .text-area h4 img {
    max-width: 34px;
}

.atlanta-banner .text-area {
    margin-top: 25px;
    color: #fff;
}

.atlanta-banner .no1 {
    color: #fff;
    margin-top: 10px;
}

.atlanta-banner .no1 h6 {
    font-size: 50px;
    font-weight: 300;
    margin-bottom: 10px;
    font-family: Inter;
}

.atlanta-banner .no1 h4 {
    font-size: 45px;
    font-weight: 700;
    margin-bottom: -8px;
    font-family: Inter;
}

.atlanta-banner .text-area h3 {
    font-family: Inter;
    font-weight: 900;
    font-size: 36px;
    line-height: 40px;
    margin-bottom: 20px;
    background: -webkit-linear-gradient(right, #326b92, #2e8075);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.atlanta-banner .text-area .input-group input {
    margin-right: 20px;
    border-radius: 50px !important;
}

@media (max-width: 600px) {
    .atlanta-banner .row {
        background-image: url(../images/new-img3.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 80vh;
        padding: 20px 0;
        position: relative;
        bottom: -70px;
        text-align: center;
        margin: 0 auto;
    }
}

@font-face {
    font-family: CustomFont;
    src: url(../fonts/Neurial_Grotesk/NeurialGrotesk-Bold.otf);
}

@font-face {
    font-family: CustomFonts;
    src: url(../fonts/Neurial_Grotesk/NeurialGrotesk-Regular.otf);
}

.atlanta-steps {
    padding: 50px 0 40px 0;
    background-color: #fff;
}

.atlanta-steps .row {
    overflow: hidden;
}

.atlanta-steps .content-item {
    padding: 20px;
    margin: -1px;
}

.atlanta-steps .heading h1 {
    font-family: Inter, sans-serif;
    font-size: 36px;
    font-weight: 900;
    color: #000;
    margin-bottom: 12px;
    background: -webkit-linear-gradient(left, #326b92 30%, #04ae75 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.atlanta-steps .heading p {
    font-family: Inter, sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #000;
    margin-bottom: 50px;
}

.atlanta-steps .content-item .text-area img {
    max-width: 60px;
    margin-bottom: 10px;
}

.atlanta-steps .content-item .text-area .text-content h4 {
    font-family: CustomFont;
    font-size: 18px;
    font-weight: 600;
    margin: 12px;
    color: #000;
}

.atlanta-steps .content-item .text-area .text-content p {
    font-family: CustomFonts;
    color: #5d5d5d;
    font-size: 14px;
    font-weight: 400;
    margin: 0 10px 10px 10px;
    padding: 0;
}

.atlanta-steps .text-content p {
    font-family: CustomFonts;
    color: #5d5d5d;
    font-size: 14px;
    font-weight: 400;
    margin: 0 10px 10px 10px;
    padding: 0;
}

.austin-hero {
    background-image: url(../images/austin/hero.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100vh;
}

.austin-hero .text-area {
    padding: 100px 0;
}

.austin-hero .text-area h6 {
    font-size: 18px;
    color: #ffc100;
    margin-bottom: 8px;
    font-family: Poppins;
    font-weight: 700;
    text-shadow: #ffc100;
}

.austin-hero .text-area a {
    font-size: 15px;
    color: #ffc100;
    margin-bottom: 8px;
    font-family: Poppins;
    font-weight: 600;
    text-decoration: underline;
    text-transform: uppercase;
}

.austin-hero .text-area h1 {
    font-size: 46px;
    margin-bottom: 12px;
    font-family: Inter;
    font-weight: 900;
    color: #fff;
    line-height: 50px;
}

.austin-hero .text-area p {
    font-size: 15px;
    color: #fff;
    margin-bottom: 20px;
    font-family: Inter;
    font-weight: 400;
}

.austin-hero .text-area .btn {
    line-height: 0;
    padding: 22px 40px;
    border-radius: 4px;
    transition: 0.5s;
    color: #fff;
    background: #d00202;
    font-size: 18px;
    font-weight: 500;
    outline: 0;
    border: none;
    width: 200px;
    border-radius: 50px;
}

.austin-hero .austin-hero-form {
    background-color: #fff !important;
    padding: 30px 24px;
    width: 65%;
    margin: 0 auto;
    margin-top: 60px;
    border-radius: 20px;
}

.austin-hero .austin-hero-form label {
    color: #000;
    font-size: 14px;
    font-weight: 400;
}

.austin-hero .austin-hero-form label span {
    color: #d00202;
    font-size: 14px;
    font-weight: 400;
}

.austin-hero .austin-hero-form ::placeholder {
    color: #000;
    font-size: 12px;
}

.austin-hero .austin-hero-form input {
    background-color: transparent;
    font-size: 12px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    border-radius: 0;
    color: #000;
}

.austin-hero .austin-hero-form form #options {
    background-color: transparent;
    width: 100%;
    color: #000;
    height: 30px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    font-size: 12px;
}

.austin-hero .austin-hero-form form option {
    color: #000;
    height: 30px;
}

.austin-hero .austin-hero-form input:focus {
    background-color: transparent;
    font-size: 14px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    border-radius: 0;
}

.austin-hero .heading h3 {
    color: #000;
    font-size: 20px;
    font-family: Inter;
    font-weight: 700;
}

.austin-hero .contact-area {
    margin-top: 16px;
}

.austin-hero .contact-area .icon img {
    margin-right: 8px;
}

.austin-hero .contact-area .num h6 {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    font-family: Inter;
}

.austin-hero .contact-area .num p {
    color: #fff;
    font-size: 14px;
    font-weight: 300;
}

@media (max-width: 601px) {
    .seo-hero-map {
        height: calc(70vh - 70px);
        background: url(../images/dallas-map.png);
        background-position: 20% 60%;
        background-repeat: no-repeat;
        background-size: contain;
    }

    .seo-hero .seo-hero-form {
        background-color: #fff !important;
        padding: 30px 40px;
        width: 100%;
        margin-top: 0 !important;
    }
}

.cleveland-hero {
    background-image: url(../images/cleveland/hero.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100vh;
}

.cleveland-hero .text-area {
    padding: 100px 0;
}

.cleveland-hero .text-area h6 {
    font-size: 18px;
    color: #ffc100;
    margin-bottom: 8px;
    font-family: Poppins;
    font-weight: 700;
    text-shadow: #ffc100;
}

.cleveland-hero .text-area a {
    font-size: 15px;
    color: #ffc100;
    margin-bottom: 8px;
    font-family: Poppins;
    font-weight: 600;
    text-decoration: underline;
    text-transform: uppercase;
}

.cleveland-hero .text-area h1 {
    font-size: 46px;
    margin-bottom: 12px;
    font-family: Inter;
    font-weight: 900;
    color: #fff;
    line-height: 50px;
}

.cleveland-hero .text-area p {
    font-size: 15px;
    color: #fff;
    margin-bottom: 20px;
    font-family: Inter;
    font-weight: 400;
}

.cleveland-hero .text-area .btn {
    line-height: 0;
    padding: 22px 40px;
    border-radius: 4px;
    transition: 0.5s;
    color: #fff;
    background: #d00202;
    font-size: 18px;
    font-weight: 500;
    outline: 0;
    border: none;
    width: 200px;
    border-radius: 50px;
}

.cleveland-hero .cleveland-hero-form {
    background-color: #fff !important;
    padding: 30px 24px;
    width: 65%;
    margin: 0 auto;
    margin-top: 60px;
    border-radius: 20px;
}

.cleveland-hero .cleveland-hero-form label {
    color: #000;
    font-size: 14px;
    font-weight: 400;
}

.cleveland-hero .cleveland-hero-form label span {
    color: #d00202;
    font-size: 14px;
    font-weight: 400;
}

.cleveland-hero .cleveland-hero-form ::placeholder {
    color: #000;
    font-size: 12px;
}

.cleveland-hero .cleveland-hero-form input {
    background-color: transparent;
    font-size: 12px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    border-radius: 0;
    color: #000;
}

.cleveland-hero .cleveland-hero-form form #options {
    background-color: transparent;
    width: 100%;
    color: #000;
    height: 30px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    font-size: 12px;
}

.cleveland-hero .cleveland-hero-form form option {
    color: #000;
    height: 30px;
}

.cleveland-hero .cleveland-hero-form input:focus {
    background-color: transparent;
    font-size: 14px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    border-radius: 0;
}

.cleveland-hero .heading h3 {
    color: #000;
    font-size: 20px;
    font-family: Inter;
    font-weight: 700;
}

.cleveland-hero .contact-area {
    margin-top: 16px;
}

.cleveland-hero .contact-area .icon img {
    margin-right: 8px;
}

.cleveland-hero .contact-area .num h6 {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    font-family: Inter;
}

.cleveland-hero .contact-area .num p {
    color: #fff;
    font-size: 14px;
    font-weight: 300;
}

@media (max-width: 601px) {
    .seo-hero-map {
        height: calc(70vh - 70px);
        background: url(../images/dallas-map.png);
        background-position: 20% 60%;
        background-repeat: no-repeat;
        background-size: contain;
    }

    .seo-hero .seo-hero-form {
        background-color: #fff !important;
        padding: 30px 40px;
        width: 100%;
        margin-top: 0 !important;
    }
}

.chicago-hero {
    background-image: url(../images/chicago/hero.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100vh;
}

.chicago-hero .text-area {
    padding: 100px 0;
}

.chicago-hero .text-area h6 {
    font-size: 18px;
    color: #ffc100;
    margin-bottom: 8px;
    font-family: Poppins;
    font-weight: 700;
    text-shadow: #ffc100;
}

.chicago-hero .text-area a {
    font-size: 15px;
    color: #ffc100;
    margin-bottom: 8px;
    font-family: Poppins;
    font-weight: 600;
    text-decoration: underline;
    text-transform: uppercase;
}

.chicago-hero .text-area h1 {
    font-size: 46px;
    margin-bottom: 12px;
    font-family: Inter;
    font-weight: 900;
    color: #fff;
    line-height: 50px;
}

.chicago-hero .text-area p {
    font-size: 15px;
    color: #fff;
    margin-bottom: 20px;
    font-family: Inter;
    font-weight: 400;
}

.chicago-hero .text-area .btn {
    line-height: 0;
    padding: 22px 40px;
    border-radius: 4px;
    transition: 0.5s;
    color: #fff;
    background: #d00202;
    font-size: 18px;
    font-weight: 500;
    outline: 0;
    border: none;
    width: 200px;
    border-radius: 50px;
}

.chicago-hero .chicago-hero-form {
    background-color: #fff !important;
    padding: 30px 24px;
    width: 65%;
    margin: 0 auto;
    margin-top: 60px;
    border-radius: 20px;
}

.chicago-hero .chicago-hero-form label {
    color: #000;
    font-size: 14px;
    font-weight: 400;
}

.chicago-hero .chicago-hero-form label span {
    color: #d00202;
    font-size: 14px;
    font-weight: 400;
}

.chicago-hero .chicago-hero-form ::placeholder {
    color: #000;
    font-size: 12px;
}

.chicago-hero .chicago-hero-form input {
    background-color: transparent;
    font-size: 12px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    border-radius: 0;
    color: #000;
}

.chicago-hero .chicago-hero-form form #options {
    background-color: transparent;
    width: 100%;
    color: #000;
    height: 30px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    font-size: 12px;
}

.chicago-hero .chicago-hero-form form option {
    color: #000;
    height: 30px;
}

.chicago-hero .chicago-hero-form input:focus {
    background-color: transparent;
    font-size: 14px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    border-radius: 0;
}

.chicago-hero .heading h3 {
    color: #000;
    font-size: 20px;
    font-family: Inter;
    font-weight: 700;
}

.chicago-hero .contact-area {
    margin-top: 16px;
}

.chicago-hero .contact-area .icon img {
    margin-right: 8px;
}

.chicago-hero .contact-area .num h6 {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    font-family: Inter;
}

.chicago-hero .contact-area .num p {
    color: #fff;
    font-size: 14px;
    font-weight: 300;
}

@media (max-width: 601px) {
    .seo-hero-map {
        height: calc(70vh - 70px);
        background: url(../images/dallas-map.png);
        background-position: 20% 60%;
        background-repeat: no-repeat;
        background-size: contain;
    }

    .seo-hero .seo-hero-form {
        background-color: #fff !important;
        padding: 30px 40px;
        width: 100%;
        margin-top: 0 !important;
    }
}

.baltimore-hero {
    background-image: url(../images/baltimore/hero.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100vh;
}

.baltimore-hero .text-area {
    padding: 100px 0;
}

.baltimore-hero .text-area h6 {
    font-size: 18px;
    color: #ffc100;
    margin-bottom: 8px;
    font-family: Poppins;
    font-weight: 700;
    text-shadow: #ffc100;
}

.baltimore-hero .text-area a {
    font-size: 15px;
    color: #ffc100;
    margin-bottom: 8px;
    font-family: Poppins;
    font-weight: 600;
    text-decoration: underline;
    text-transform: uppercase;
}

.baltimore-hero .text-area h1 {
    font-size: 46px;
    margin-bottom: 12px;
    font-family: Inter;
    font-weight: 900;
    color: #fff;
    line-height: 50px;
}

.baltimore-hero .text-area p {
    font-size: 15px;
    color: #fff;
    margin-bottom: 20px;
    font-family: Inter;
    font-weight: 400;
}

.baltimore-hero .text-area .btn {
    line-height: 0;
    padding: 22px 40px;
    border-radius: 4px;
    transition: 0.5s;
    color: #fff;
    background: #d00202;
    font-size: 18px;
    font-weight: 500;
    outline: 0;
    border: none;
    width: 200px;
    border-radius: 50px;
}

.baltimore-hero .baltimore-hero-form {
    background-color: #fff !important;
    padding: 30px 24px;
    width: 65%;
    margin: 0 auto;
    margin-top: 60px;
    border-radius: 20px;
}

.baltimore-hero .baltimore-hero-form label {
    color: #000;
    font-size: 14px;
    font-weight: 400;
}

.baltimore-hero .baltimore-hero-form label span {
    color: #d00202;
    font-size: 14px;
    font-weight: 400;
}

.baltimore-hero .baltimore-hero-form ::placeholder {
    color: #000;
    font-size: 12px;
}

.baltimore-hero .baltimore-hero-form input {
    background-color: transparent;
    font-size: 12px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    border-radius: 0;
    color: #000;
}

.baltimore-hero .baltimore-hero-form form #options {
    background-color: transparent;
    width: 100%;
    color: #000;
    height: 30px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    font-size: 12px;
}

.baltimore-hero .baltimore-hero-form form option {
    color: #000;
    height: 30px;
}

.baltimore-hero .baltimore-hero-form input:focus {
    background-color: transparent;
    font-size: 14px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    border-radius: 0;
}

.baltimore-hero .heading h3 {
    color: #000;
    font-size: 20px;
    font-family: Inter;
    font-weight: 700;
}

.baltimore-hero .contact-area {
    margin-top: 16px;
}

.baltimore-hero .contact-area .icon img {
    margin-right: 8px;
}

.baltimore-hero .contact-area .num h6 {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    font-family: Inter;
}

.baltimore-hero .contact-area .num p {
    color: #fff;
    font-size: 14px;
    font-weight: 300;
}

@media (max-width: 601px) {
    .seo-hero-map {
        height: calc(70vh - 70px);
        background: url(../images/dallas-map.png);
        background-position: 20% 60%;
        background-repeat: no-repeat;
        background-size: contain;
    }

    .seo-hero .seo-hero-form {
        background-color: #fff !important;
        padding: 30px 40px;
        width: 100%;
        margin-top: 0 !important;
    }
}

.arlington-hero {
    background-image: url(../images/arlington/hero.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100vh;
}

.arlington-hero .text-area {
    padding: 100px 0;
}

.arlington-hero .text-area h6 {
    font-size: 18px;
    color: #ffc100;
    margin-bottom: 8px;
    font-family: Poppins;
    font-weight: 700;
    text-shadow: #ffc100;
}

.arlington-hero .text-area a {
    font-size: 15px;
    color: #ffc100;
    margin-bottom: 8px;
    font-family: Poppins;
    font-weight: 600;
    text-decoration: underline;
    text-transform: uppercase;
}

.arlington-hero .text-area h1 {
    font-size: 46px;
    margin-bottom: 12px;
    font-family: Inter;
    font-weight: 900;
    color: #fff;
    line-height: 50px;
}

.arlington-hero .text-area p {
    font-size: 15px;
    color: #fff;
    margin-bottom: 20px;
    font-family: Inter;
    font-weight: 400;
}

.arlington-hero .text-area .btn {
    line-height: 0;
    padding: 22px 40px;
    border-radius: 4px;
    transition: 0.5s;
    color: #fff;
    background: #d00202;
    font-size: 18px;
    font-weight: 500;
    outline: 0;
    border: none;
    width: 200px;
    border-radius: 50px;
}

.arlington-hero .arlington-hero-form {
    background-color: #fff !important;
    padding: 30px 24px;
    width: 65%;
    margin: 0 auto;
    margin-top: 60px;
    border-radius: 20px;
}

.arlington-hero .arlington-hero-form label {
    color: #000;
    font-size: 14px;
    font-weight: 400;
}

.arlington-hero .arlington-hero-form label span {
    color: #d00202;
    font-size: 14px;
    font-weight: 400;
}

.arlington-hero .arlington-hero-form ::placeholder {
    color: #000;
    font-size: 12px;
}

.arlington-hero .arlington-hero-form input {
    background-color: transparent;
    font-size: 12px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    border-radius: 0;
    color: #000;
}

.arlington-hero .arlington-hero-form form #options {
    background-color: transparent;
    width: 100%;
    color: #000;
    height: 30px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    font-size: 12px;
}

.arlington-hero .arlington-hero-form form option {
    color: #000;
    height: 30px;
}

.arlington-hero .arlington-hero-form input:focus {
    background-color: transparent;
    font-size: 14px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    border-radius: 0;
}

.arlington-hero .heading h3 {
    color: #000;
    font-size: 20px;
    font-family: Inter;
    font-weight: 700;
}

.arlington-hero .contact-area {
    margin-top: 16px;
}

.arlington-hero .contact-area .icon img {
    margin-right: 8px;
}

.arlington-hero .contact-area .num h6 {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    font-family: Inter;
}

.arlington-hero .contact-area .num p {
    color: #fff;
    font-size: 14px;
    font-weight: 300;
}

@media (max-width: 601px) {
    .seo-hero-map {
        height: calc(70vh - 70px);
        background: url(../images/dallas-map.png);
        background-position: 20% 60%;
        background-repeat: no-repeat;
        background-size: contain;
    }

    .seo-hero .seo-hero-form {
        background-color: #fff !important;
        padding: 30px 40px;
        width: 100%;
        margin-top: 0 !important;
    }
}

.dallas-hero {
    background-image: url(../images/dallas/hero.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100vh;
}

.dallas-hero .text-area {
    padding: 100px 0;
}

.dallas-hero .text-area h6 {
    font-size: 18px;
    color: #ffc100;
    margin-bottom: 8px;
    font-family: Poppins;
    font-weight: 700;
    text-shadow: #ffc100;
}

.dallas-hero .text-area a {
    font-size: 15px;
    color: #ffc100;
    margin-bottom: 8px;
    font-family: Poppins;
    font-weight: 600;
    text-decoration: underline;
    text-transform: uppercase;
}

.dallas-hero .text-area h1 {
    font-size: 46px;
    margin-bottom: 12px;
    font-family: Inter;
    font-weight: 900;
    color: #fff;
    line-height: 50px;
}

.dallas-hero .text-area p {
    font-size: 15px;
    color: #fff;
    margin-bottom: 20px;
    font-family: Inter;
    font-weight: 400;
}

.dallas-hero .text-area .btn {
    line-height: 0;
    padding: 22px 40px;
    border-radius: 4px;
    transition: 0.5s;
    color: #fff;
    background: #d00202;
    font-size: 18px;
    font-weight: 500;
    outline: 0;
    border: none;
    width: 200px;
    border-radius: 50px;
}

.dallas-hero .dallas-hero-form {
    background-color: #fff !important;
    padding: 30px 24px;
    width: 65%;
    margin: 0 auto;
    margin-top: 60px;
    border-radius: 20px;
}

.dallas-hero .dallas-hero-form label {
    color: #000;
    font-size: 14px;
    font-weight: 400;
}

.dallas-hero .dallas-hero-form label span {
    color: #d00202;
    font-size: 14px;
    font-weight: 400;
}

.dallas-hero .dallas-hero-form ::placeholder {
    color: #000;
    font-size: 12px;
}

.dallas-hero .dallas-hero-form input {
    background-color: transparent;
    font-size: 12px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    border-radius: 0;
    color: #000;
}

.dallas-hero .dallas-hero-form form #options {
    background-color: transparent;
    width: 100%;
    color: #000;
    height: 30px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    font-size: 12px;
}

.dallas-hero .dallas-hero-form form option {
    color: #000;
    height: 30px;
}

.dallas-hero .dallas-hero-form input:focus {
    background-color: transparent;
    font-size: 14px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    border-radius: 0;
}

.dallas-hero .heading h3 {
    color: #000;
    font-size: 20px;
    font-family: Inter;
    font-weight: 700;
}

.dallas-hero .contact-area {
    margin-top: 16px;
}

.dallas-hero .contact-area .icon img {
    margin-right: 8px;
}

.dallas-hero .contact-area .num h6 {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    font-family: Inter;
}

.dallas-hero .contact-area .num p {
    color: #fff;
    font-size: 14px;
    font-weight: 300;
}

@media (max-width: 601px) {
    .seo-hero-map {
        height: calc(70vh - 70px);
        background: url(../images/dallas-map.png);
        background-position: 20% 60%;
        background-repeat: no-repeat;
        background-size: contain;
    }

    .seo-hero .seo-hero-form {
        background-color: #fff !important;
        padding: 30px 40px;
        width: 100%;
        margin-top: 0 !important;
    }
}

.denver-hero {
    background-image: url(../images/denver/hero.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100vh;
}

.denver-hero .text-area {
    padding: 100px 0;
}

.denver-hero .text-area h6 {
    font-size: 18px;
    color: #ffc100;
    margin-bottom: 8px;
    font-family: Poppins;
    font-weight: 700;
    text-shadow: #ffc100;
}

.denver-hero .text-area a {
    font-size: 15px;
    color: #ffc100;
    margin-bottom: 8px;
    font-family: Poppins;
    font-weight: 600;
    text-decoration: underline;
    text-transform: uppercase;
}

.denver-hero .text-area h1 {
    font-size: 46px;
    margin-bottom: 12px;
    font-family: Inter;
    font-weight: 900;
    color: #fff;
    line-height: 50px;
}

.denver-hero .text-area p {
    font-size: 15px;
    color: #fff;
    margin-bottom: 20px;
    font-family: Inter;
    font-weight: 400;
}

.denver-hero .text-area .btn {
    line-height: 0;
    padding: 22px 40px;
    border-radius: 4px;
    transition: 0.5s;
    color: #fff;
    background: #d00202;
    font-size: 18px;
    font-weight: 500;
    outline: 0;
    border: none;
    width: 200px;
    border-radius: 50px;
}

.denver-hero .denver-hero-form {
    background-color: #fff !important;
    padding: 30px 24px;
    width: 65%;
    margin: 0 auto;
    margin-top: 60px;
    border-radius: 20px;
}

.denver-hero .denver-hero-form label {
    color: #000;
    font-size: 14px;
    font-weight: 400;
}

.denver-hero .denver-hero-form label span {
    color: #d00202;
    font-size: 14px;
    font-weight: 400;
}

.denver-hero .denver-hero-form ::placeholder {
    color: #000;
    font-size: 12px;
}

.denver-hero .denver-hero-form input {
    background-color: transparent;
    font-size: 12px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    border-radius: 0;
    color: #000;
}

.denver-hero .denver-hero-form form #options {
    background-color: transparent;
    width: 100%;
    color: #000;
    height: 30px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    font-size: 12px;
}

.denver-hero .denver-hero-form form option {
    color: #000;
    height: 30px;
}

.denver-hero .denver-hero-form input:focus {
    background-color: transparent;
    font-size: 14px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    border-radius: 0;
}

.denver-hero .heading h3 {
    color: #000;
    font-size: 20px;
    font-family: Inter;
    font-weight: 700;
}

.denver-hero .contact-area {
    margin-top: 16px;
}

.denver-hero .contact-area .icon img {
    margin-right: 8px;
}

.denver-hero .contact-area .num h6 {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    font-family: Inter;
}

.denver-hero .contact-area .num p {
    color: #fff;
    font-size: 14px;
    font-weight: 300;
}

@media (max-width: 601px) {
    .seo-hero-map {
        height: calc(70vh - 70px);
        background: url(../images/dallas-map.png);
        background-position: 20% 60%;
        background-repeat: no-repeat;
        background-size: contain;
    }

    .seo-hero .seo-hero-form {
        background-color: #fff !important;
        padding: 30px 40px;
        width: 100%;
        margin-top: 0 !important;
    }
}

.houston-hero {
    background-image: url(../images/houston/hero.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100vh;
}

.houston-hero .text-area {
    padding: 100px 0;
}

.houston-hero .text-area h6 {
    font-size: 18px;
    color: #ffc100;
    margin-bottom: 8px;
    font-family: Poppins;
    font-weight: 700;
    text-shadow: #ffc100;
}

.houston-hero .text-area a {
    font-size: 15px;
    color: #ffc100;
    margin-bottom: 8px;
    font-family: Poppins;
    font-weight: 600;
    text-decoration: underline;
    text-transform: uppercase;
}

.houston-hero .text-area h1 {
    font-size: 46px;
    margin-bottom: 12px;
    font-family: Inter;
    font-weight: 900;
    color: #fff;
    line-height: 50px;
}

.houston-hero .text-area p {
    font-size: 15px;
    color: #fff;
    margin-bottom: 20px;
    font-family: Inter;
    font-weight: 400;
}

.houston-hero .text-area .btn {
    line-height: 0;
    padding: 22px 40px;
    border-radius: 4px;
    transition: 0.5s;
    color: #fff;
    background: #d00202;
    font-size: 18px;
    font-weight: 500;
    outline: 0;
    border: none;
    width: 200px;
    border-radius: 50px;
}

.houston-hero .houston-hero-form {
    background-color: #fff !important;
    padding: 30px 24px;
    width: 65%;
    margin: 0 auto;
    margin-top: 60px;
    border-radius: 20px;
}

.houston-hero .houston-hero-form label {
    color: #000;
    font-size: 14px;
    font-weight: 400;
}

.houston-hero .houston-hero-form label span {
    color: #d00202;
    font-size: 14px;
    font-weight: 400;
}

.houston-hero .houston-hero-form ::placeholder {
    color: #000;
    font-size: 12px;
}

.houston-hero .houston-hero-form input {
    background-color: transparent;
    font-size: 12px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    border-radius: 0;
    color: #000;
}

.houston-hero .houston-hero-form form #options {
    background-color: transparent;
    width: 100%;
    color: #000;
    height: 30px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    font-size: 12px;
}

.houston-hero .houston-hero-form form option {
    color: #000;
    height: 30px;
}

.houston-hero .houston-hero-form input:focus {
    background-color: transparent;
    font-size: 14px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    border-radius: 0;
}

.houston-hero .heading h3 {
    color: #000;
    font-size: 20px;
    font-family: Inter;
    font-weight: 700;
}

.houston-hero .contact-area {
    margin-top: 16px;
}

.houston-hero .contact-area .icon img {
    margin-right: 8px;
}

.houston-hero .contact-area .num h6 {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    font-family: Inter;
}

.houston-hero .contact-area .num p {
    color: #fff;
    font-size: 14px;
    font-weight: 300;
}

@media (max-width: 601px) {
    .seo-hero-map {
        height: calc(70vh - 70px);
        background: url(../images/dallas-map.png);
        background-position: 20% 60%;
        background-repeat: no-repeat;
        background-size: contain;
    }

    .seo-hero .seo-hero-form {
        background-color: #fff !important;
        padding: 30px 40px;
        width: 100%;
        margin-top: 0 !important;
    }
}

.jacksonville-hero {
    background-image: url(../images/jacksonville/hero.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100vh;
}

.jacksonville-hero .text-area {
    padding: 100px 0;
}

.jacksonville-hero .text-area h6 {
    font-size: 18px;
    color: #ffc100;
    margin-bottom: 8px;
    font-family: Poppins;
    font-weight: 700;
    text-shadow: #ffc100;
}

.jacksonville-hero .text-area a {
    font-size: 15px;
    color: #ffc100;
    margin-bottom: 8px;
    font-family: Poppins;
    font-weight: 600;
    text-decoration: underline;
    text-transform: uppercase;
}

.jacksonville-hero .text-area h1 {
    font-size: 46px;
    margin-bottom: 12px;
    font-family: Inter;
    font-weight: 900;
    color: #fff;
    line-height: 50px;
}

.jacksonville-hero .text-area p {
    font-size: 15px;
    color: #fff;
    margin-bottom: 20px;
    font-family: Inter;
    font-weight: 400;
}

.jacksonville-hero .text-area .btn {
    line-height: 0;
    padding: 22px 40px;
    border-radius: 4px;
    transition: 0.5s;
    color: #fff;
    background: #d00202;
    font-size: 18px;
    font-weight: 500;
    outline: 0;
    border: none;
    width: 200px;
    border-radius: 50px;
}

.jacksonville-hero .jacksonville-hero-form {
    background-color: #fff !important;
    padding: 30px 24px;
    width: 65%;
    margin: 0 auto;
    margin-top: 60px;
    border-radius: 20px;
}

.jacksonville-hero .jacksonville-hero-form label {
    color: #000;
    font-size: 14px;
    font-weight: 400;
}

.jacksonville-hero .jacksonville-hero-form label span {
    color: #d00202;
    font-size: 14px;
    font-weight: 400;
}

.jacksonville-hero .jacksonville-hero-form ::placeholder {
    color: #000;
    font-size: 12px;
}

.jacksonville-hero .jacksonville-hero-form input {
    background-color: transparent;
    font-size: 12px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    border-radius: 0;
    color: #000;
}

.jacksonville-hero .jacksonville-hero-form form #options {
    background-color: transparent;
    width: 100%;
    color: #000;
    height: 30px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    font-size: 12px;
}

.jacksonville-hero .jacksonville-hero-form form option {
    color: #000;
    height: 30px;
}

.jacksonville-hero .jacksonville-hero-form input:focus {
    background-color: transparent;
    font-size: 14px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    border-radius: 0;
}

.jacksonville-hero .heading h3 {
    color: #000;
    font-size: 20px;
    font-family: Inter;
    font-weight: 700;
}

.jacksonville-hero .contact-area {
    margin-top: 16px;
}

.jacksonville-hero .contact-area .icon img {
    margin-right: 8px;
}

.jacksonville-hero .contact-area .num h6 {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    font-family: Inter;
}

.jacksonville-hero .contact-area .num p {
    color: #fff;
    font-size: 14px;
    font-weight: 300;
}

@media (max-width: 601px) {
    .seo-hero-map {
        height: calc(70vh - 70px);
        background: url(../images/dallas-map.png);
        background-position: 20% 60%;
        background-repeat: no-repeat;
        background-size: contain;
    }

    .seo-hero .seo-hero-form {
        background-color: #fff !important;
        padding: 30px 40px;
        width: 100%;
        margin-top: 0 !important;
    }
}

.kansas-hero {
    background-image: url(../images/jacksonville/hero.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100vh;
}

.kansas-hero .text-area {
    padding: 100px 0;
}

.kansas-hero .text-area h6 {
    font-size: 18px;
    color: #ffc100;
    margin-bottom: 8px;
    font-family: Poppins;
    font-weight: 700;
    text-shadow: #ffc100;
}

.kansas-hero .text-area a {
    font-size: 15px;
    color: #ffc100;
    margin-bottom: 8px;
    font-family: Poppins;
    font-weight: 600;
    text-decoration: underline;
    text-transform: uppercase;
}

.kansas-hero .text-area h1 {
    font-size: 46px;
    margin-bottom: 12px;
    font-family: Inter;
    font-weight: 900;
    color: #fff;
    line-height: 50px;
}

.kansas-hero .text-area p {
    font-size: 15px;
    color: #fff;
    margin-bottom: 20px;
    font-family: Inter;
    font-weight: 400;
}

.kansas-hero .text-area .btn {
    line-height: 0;
    padding: 22px 40px;
    border-radius: 4px;
    transition: 0.5s;
    color: #fff;
    background: #d00202;
    font-size: 18px;
    font-weight: 500;
    outline: 0;
    border: none;
    width: 200px;
    border-radius: 50px;
}

.kansas-hero .kansas-hero-form {
    background-color: #fff !important;
    padding: 30px 24px;
    width: 65%;
    margin: 0 auto;
    margin-top: 60px;
    border-radius: 20px;
}

.kansas-hero .kansas-hero-form label {
    color: #000;
    font-size: 14px;
    font-weight: 400;
}

.kansas-hero .kansas-hero-form label span {
    color: #d00202;
    font-size: 14px;
    font-weight: 400;
}

.kansas-hero .kansas-hero-form ::placeholder {
    color: #000;
    font-size: 12px;
}

.kansas-hero .kansas-hero-form input {
    background-color: transparent;
    font-size: 12px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    border-radius: 0;
    color: #000;
}

.kansas-hero .kansas-hero-form form #options {
    background-color: transparent;
    width: 100%;
    color: #000;
    height: 30px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    font-size: 12px;
}

.kansas-hero .kansas-hero-form form option {
    color: #000;
    height: 30px;
}

.kansas-hero .kansas-hero-form input:focus {
    background-color: transparent;
    font-size: 14px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    border-radius: 0;
}

.kansas-hero .heading h3 {
    color: #000;
    font-size: 20px;
    font-family: Inter;
    font-weight: 700;
}

.kansas-hero .contact-area {
    margin-top: 16px;
}

.kansas-hero .contact-area .icon img {
    margin-right: 8px;
}

.kansas-hero .contact-area .num h6 {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    font-family: Inter;
}

.kansas-hero .contact-area .num p {
    color: #fff;
    font-size: 14px;
    font-weight: 300;
}

@media (max-width: 601px) {
    .seo-hero-map {
        height: calc(70vh - 70px);
        background: url(../images/dallas-map.png);
        background-position: 20% 60%;
        background-repeat: no-repeat;
        background-size: contain;
    }

    .seo-hero .seo-hero-form {
        background-color: #fff !important;
        padding: 30px 40px;
        width: 100%;
        margin-top: 0 !important;
    }
}

.lasvegas-hero {
    background-image: url(../images/lasvegas/hero.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100vh;
}

.lasvegas-hero .text-area {
    padding: 100px 0;
}

.lasvegas-hero .text-area h6 {
    font-size: 18px;
    color: #ffc100;
    margin-bottom: 8px;
    font-family: Poppins;
    font-weight: 700;
    text-shadow: #ffc100;
}

.lasvegas-hero .text-area a {
    font-size: 15px;
    color: #ffc100;
    margin-bottom: 8px;
    font-family: Poppins;
    font-weight: 600;
    text-decoration: underline;
    text-transform: uppercase;
}

.lasvegas-hero .text-area h1 {
    font-size: 46px;
    margin-bottom: 12px;
    font-family: Inter;
    font-weight: 900;
    color: #fff;
    line-height: 50px;
}

.lasvegas-hero .text-area p {
    font-size: 15px;
    color: #fff;
    margin-bottom: 20px;
    font-family: Inter;
    font-weight: 400;
}

.lasvegas-hero .text-area .btn {
    line-height: 0;
    padding: 22px 40px;
    border-radius: 4px;
    transition: 0.5s;
    color: #fff;
    background: #d00202;
    font-size: 18px;
    font-weight: 500;
    outline: 0;
    border: none;
    width: 200px;
    border-radius: 50px;
}

.lasvegas-hero .lasvegas-hero-form {
    background-color: #fff !important;
    padding: 30px 24px;
    width: 65%;
    margin: 0 auto;
    margin-top: 60px;
    border-radius: 20px;
}

.lasvegas-hero .lasvegas-hero-form label {
    color: #000;
    font-size: 14px;
    font-weight: 400;
}

.lasvegas-hero .lasvegas-hero-form label span {
    color: #d00202;
    font-size: 14px;
    font-weight: 400;
}

.lasvegas-hero .lasvegas-hero-form ::placeholder {
    color: #000;
    font-size: 12px;
}

.lasvegas-hero .lasvegas-hero-form input {
    background-color: transparent;
    font-size: 12px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    border-radius: 0;
    color: #000;
}

.lasvegas-hero .lasvegas-hero-form form #options {
    background-color: transparent;
    width: 100%;
    color: #000;
    height: 30px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    font-size: 12px;
}

.lasvegas-hero .lasvegas-hero-form form option {
    color: #000;
    height: 30px;
}

.lasvegas-hero .lasvegas-hero-form input:focus {
    background-color: transparent;
    font-size: 14px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    border-radius: 0;
}

.lasvegas-hero .heading h3 {
    color: #000;
    font-size: 20px;
    font-family: Inter;
    font-weight: 700;
}

.lasvegas-hero .contact-area {
    margin-top: 16px;
}

.lasvegas-hero .contact-area .icon img {
    margin-right: 8px;
}

.lasvegas-hero .contact-area .num h6 {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    font-family: Inter;
}

.lasvegas-hero .contact-area .num p {
    color: #fff;
    font-size: 14px;
    font-weight: 300;
}

@media (max-width: 601px) {
    .seo-hero-map {
        height: calc(70vh - 70px);
        background: url(../images/dallas-map.png);
        background-position: 20% 60%;
        background-repeat: no-repeat;
        background-size: contain;
    }

    .seo-hero .seo-hero-form {
        background-color: #fff !important;
        padding: 30px 40px;
        width: 100%;
        margin-top: 0 !important;
    }
}

.losangeles-hero {
    background-image: url(../images/losangeles/hero.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100vh;
}

.losangeles-hero .text-area {
    padding: 100px 0;
}

.losangeles-hero .text-area h6 {
    font-size: 18px;
    color: #ffc100;
    margin-bottom: 8px;
    font-family: Poppins;
    font-weight: 700;
    text-shadow: #ffc100;
}

.losangeles-hero .text-area a {
    font-size: 15px;
    color: #ffc100;
    margin-bottom: 8px;
    font-family: Poppins;
    font-weight: 600;
    text-decoration: underline;
    text-transform: uppercase;
}

.losangeles-hero .text-area h1 {
    font-size: 46px;
    margin-bottom: 12px;
    font-family: Inter;
    font-weight: 900;
    color: #fff;
    line-height: 50px;
}

.losangeles-hero .text-area p {
    font-size: 15px;
    color: #fff;
    margin-bottom: 20px;
    font-family: Inter;
    font-weight: 400;
}

.losangeles-hero .text-area .btn {
    line-height: 0;
    padding: 22px 40px;
    border-radius: 4px;
    transition: 0.5s;
    color: #fff;
    background: #d00202;
    font-size: 18px;
    font-weight: 500;
    outline: 0;
    border: none;
    width: 200px;
    border-radius: 50px;
}

.losangeles-hero .losangeles-hero-form {
    background-color: #fff !important;
    padding: 30px 24px;
    width: 65%;
    margin: 0 auto;
    margin-top: 60px;
    border-radius: 20px;
}

.losangeles-hero .losangeles-hero-form label {
    color: #000;
    font-size: 14px;
    font-weight: 400;
}

.losangeles-hero .losangeles-hero-form label span {
    color: #d00202;
    font-size: 14px;
    font-weight: 400;
}

.losangeles-hero .losangeles-hero-form ::placeholder {
    color: #000;
    font-size: 12px;
}

.losangeles-hero .losangeles-hero-form input {
    background-color: transparent;
    font-size: 12px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    border-radius: 0;
    color: #000;
}

.losangeles-hero .losangeles-hero-form form #options {
    background-color: transparent;
    width: 100%;
    color: #000;
    height: 30px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    font-size: 12px;
}

.losangeles-hero .losangeles-hero-form form option {
    color: #000;
    height: 30px;
}

.losangeles-hero .losangeles-hero-form input:focus {
    background-color: transparent;
    font-size: 14px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    border-radius: 0;
}

.losangeles-hero .heading h3 {
    color: #000;
    font-size: 20px;
    font-family: Inter;
    font-weight: 700;
}

.losangeles-hero .contact-area {
    margin-top: 16px;
}

.losangeles-hero .contact-area .icon img {
    margin-right: 8px;
}

.losangeles-hero .contact-area .num h6 {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    font-family: Inter;
}

.losangeles-hero .contact-area .num p {
    color: #fff;
    font-size: 14px;
    font-weight: 300;
}

@media (max-width: 601px) {
    .seo-hero-map {
        height: calc(70vh - 70px);
        background: url(../images/dallas-map.png);
        background-position: 20% 60%;
        background-repeat: no-repeat;
        background-size: contain;
    }

    .seo-hero .seo-hero-form {
        background-color: #fff !important;
        padding: 30px 40px;
        width: 100%;
        margin-top: 0 !important;
    }
}

.louisville-hero {
    background-image: url(../images/louisville/commercial-cleaning-Louisville-KY.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100vh;
}

.louisville-hero .text-area {
    padding: 100px 0;
}

.louisville-hero .text-area h6 {
    font-size: 18px;
    color: #ffc100;
    margin-bottom: 8px;
    font-family: Poppins;
    font-weight: 700;
    text-shadow: #ffc100;
}

.louisville-hero .text-area a {
    font-size: 15px;
    color: #ffc100;
    margin-bottom: 8px;
    font-family: Poppins;
    font-weight: 600;
    text-decoration: underline;
    text-transform: uppercase;
}

.louisville-hero .text-area h1 {
    font-size: 46px;
    margin-bottom: 12px;
    font-family: Inter;
    font-weight: 900;
    color: #fff;
    line-height: 50px;
}

.louisville-hero .text-area p {
    font-size: 15px;
    color: #fff;
    margin-bottom: 20px;
    font-family: Inter;
    font-weight: 400;
}

.louisville-hero .text-area .btn {
    line-height: 0;
    padding: 22px 40px;
    border-radius: 4px;
    transition: 0.5s;
    color: #fff;
    background: #d00202;
    font-size: 18px;
    font-weight: 500;
    outline: 0;
    border: none;
    width: 200px;
    border-radius: 50px;
}

.louisville-hero .louisville-hero-form {
    background-color: #fff !important;
    padding: 30px 24px;
    width: 65%;
    margin: 0 auto;
    margin-top: 60px;
    border-radius: 20px;
}

.louisville-hero .louisville-hero-form label {
    color: #000;
    font-size: 14px;
    font-weight: 400;
}

.louisville-hero .louisville-hero-form label span {
    color: #d00202;
    font-size: 14px;
    font-weight: 400;
}

.louisville-hero .louisville-hero-form ::placeholder {
    color: #000;
    font-size: 12px;
}

.louisville-hero .louisville-hero-form input {
    background-color: transparent;
    font-size: 12px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    border-radius: 0;
    color: #000;
}

.louisville-hero .louisville-hero-form form #options {
    background-color: transparent;
    width: 100%;
    color: #000;
    height: 30px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    font-size: 12px;
}

.louisville-hero .louisville-hero-form form option {
    color: #000;
    height: 30px;
}

.louisville-hero .louisville-hero-form input:focus {
    background-color: transparent;
    font-size: 14px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    border-radius: 0;
}

.louisville-hero .heading h3 {
    color: #000;
    font-size: 20px;
    font-family: Inter;
    font-weight: 700;
}

.louisville-hero .contact-area {
    margin-top: 16px;
}

.louisville-hero .contact-area .icon img {
    margin-right: 8px;
}

.louisville-hero .contact-area .num h6 {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    font-family: Inter;
}

.louisville-hero .contact-area .num p {
    color: #fff;
    font-size: 14px;
    font-weight: 300;
}

.newyork-hero {
    background-image: url(../images/newyork/NYC_Downtown_Manhat.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100vh;
}

.newyork-hero .text-area {
    padding: 100px 0;
}

.newyork-hero .text-area h6 {
    font-size: 18px;
    color: #ffc100;
    margin-bottom: 8px;
    font-family: Poppins;
    font-weight: 700;
    text-shadow: #ffc100;
}

.newyork-hero .text-area a {
    font-size: 15px;
    color: #ffc100;
    margin-bottom: 8px;
    font-family: Poppins;
    font-weight: 600;
    text-decoration: underline;
    text-transform: uppercase;
}

.newyork-hero .text-area h1 {
    font-size: 46px;
    margin-bottom: 12px;
    font-family: Inter;
    font-weight: 900;
    color: #fff;
    line-height: 50px;
}

.newyork-hero .text-area p {
    font-size: 15px;
    color: #fff;
    margin-bottom: 20px;
    font-family: Inter;
    font-weight: 400;
}

.newyork-hero .text-area .btn {
    line-height: 0;
    padding: 22px 40px;
    border-radius: 4px;
    transition: 0.5s;
    color: #fff;
    background: #d00202;
    font-size: 18px;
    font-weight: 500;
    outline: 0;
    border: none;
    width: 200px;
    border-radius: 50px;
}

.newyork-hero .newyork-hero-form {
    background-color: #fff !important;
    padding: 30px 24px;
    width: 65%;
    margin: 0 auto;
    margin-top: 60px;
    border-radius: 20px;
}

.newyork-hero .newyork-hero-form label {
    color: #000;
    font-size: 14px;
    font-weight: 400;
}

.newyork-hero .newyork-hero-form label span {
    color: #d00202;
    font-size: 14px;
    font-weight: 400;
}

.newyork-hero .newyork-hero-form ::placeholder {
    color: #000;
    font-size: 12px;
}

.newyork-hero .newyork-hero-form input {
    background-color: transparent;
    font-size: 12px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    border-radius: 0;
    color: #000;
}

.newyork-hero .newyork-hero-form form #options {
    background-color: transparent;
    width: 100%;
    color: #000;
    height: 30px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    font-size: 12px;
}

.newyork-hero .newyork-hero-form form option {
    color: #000;
    height: 30px;
}

.newyork-hero .newyork-hero-form input:focus {
    background-color: transparent;
    font-size: 14px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    border-radius: 0;
}

.newyork-hero .heading h3 {
    color: #000;
    font-size: 20px;
    font-family: Inter;
    font-weight: 700;
}

.newyork-hero .contact-area {
    margin-top: 16px;
}

.newyork-hero .contact-area .icon img {
    margin-right: 8px;
}

.newyork-hero .contact-area .num h6 {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    font-family: Inter;
}

.newyork-hero .contact-area .num p {
    color: #fff;
    font-size: 14px;
    font-weight: 300;
}

.miami-hero {
    background-image: url(../images/Miami/MG_6_1_Miami.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100vh;
}

.miami-hero .text-area {
    padding: 100px 0;
}

.miami-hero .text-area h6 {
    font-size: 18px;
    color: #ffc100;
    margin-bottom: 8px;
    font-family: Poppins;
    font-weight: 700;
    text-shadow: #ffc100;
}

.miami-hero .text-area a {
    font-size: 15px;
    color: #ffc100;
    margin-bottom: 8px;
    font-family: Poppins;
    font-weight: 600;
    text-decoration: underline;
    text-transform: uppercase;
}

.miami-hero .text-area h1 {
    font-size: 46px;
    margin-bottom: 12px;
    font-family: Inter;
    font-weight: 900;
    color: #fff;
    line-height: 50px;
}

.miami-hero .text-area p {
    font-size: 15px;
    color: #fff;
    margin-bottom: 20px;
    font-family: Inter;
    font-weight: 400;
}

.miami-hero .text-area .btn {
    line-height: 0;
    padding: 22px 40px;
    border-radius: 4px;
    transition: 0.5s;
    color: #fff;
    background: #d00202;
    font-size: 18px;
    font-weight: 500;
    outline: 0;
    border: none;
    width: 200px;
    border-radius: 50px;
}

.miami-hero .miami-hero-form {
    background-color: #fff !important;
    padding: 30px 24px;
    width: 65%;
    margin: 0 auto;
    margin-top: 60px;
    border-radius: 20px;
}

.miami-hero .miami-hero-form label {
    color: #000;
    font-size: 14px;
    font-weight: 400;
}

.miami-hero .miami-hero-form label span {
    color: #d00202;
    font-size: 14px;
    font-weight: 400;
}

.miami-hero .miami-hero-form ::placeholder {
    color: #000;
    font-size: 12px;
}

.miami-hero .miami-hero-form input {
    background-color: transparent;
    font-size: 12px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    border-radius: 0;
    color: #000;
}

.miami-hero .miami-hero-form form #options {
    background-color: transparent;
    width: 100%;
    color: #000;
    height: 30px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    font-size: 12px;
}

.miami-hero .miami-hero-form form option {
    color: #000;
    height: 30px;
}

.miami-hero .miami-hero-form input:focus {
    background-color: transparent;
    font-size: 14px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    border-radius: 0;
}

.miami-hero .heading h3 {
    color: #000;
    font-size: 20px;
    font-family: Inter;
    font-weight: 700;
}

.miami-hero .contact-area {
    margin-top: 16px;
}

.miami-hero .contact-area .icon img {
    margin-right: 8px;
}

.miami-hero .contact-area .num h6 {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    font-family: Inter;
}

.miami-hero .contact-area .num p {
    color: #fff;
    font-size: 14px;
    font-weight: 300;
}

.minneapolis-hero {
    background-image: url(../images/Minneapolis/Meet-Mineapolis-Hero-Sky.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100vh;
}

.minneapolis-hero .text-area {
    padding: 100px 0;
}

.minneapolis-hero .text-area h6 {
    font-size: 18px;
    color: #ffc100;
    margin-bottom: 8px;
    font-family: Poppins;
    font-weight: 700;
    text-shadow: #ffc100;
}

.minneapolis-hero .text-area a {
    font-size: 15px;
    color: #ffc100;
    margin-bottom: 8px;
    font-family: Poppins;
    font-weight: 600;
    text-decoration: underline;
    text-transform: uppercase;
}

.minneapolis-hero .text-area h1 {
    font-size: 46px;
    margin-bottom: 12px;
    font-family: Inter;
    font-weight: 900;
    color: #fff;
    line-height: 50px;
}

.minneapolis-hero .text-area p {
    font-size: 15px;
    color: #fff;
    margin-bottom: 20px;
    font-family: Inter;
    font-weight: 400;
}

.minneapolis-hero .text-area .btn {
    line-height: 0;
    padding: 22px 40px;
    border-radius: 4px;
    transition: 0.5s;
    color: #fff;
    background: #d00202;
    font-size: 18px;
    font-weight: 500;
    outline: 0;
    border: none;
    width: 200px;
    border-radius: 50px;
}

.minneapolis-hero .minneapolis-hero-form {
    background-color: #fff !important;
    padding: 30px 24px;
    width: 65%;
    margin: 0 auto;
    margin-top: 60px;
    border-radius: 20px;
}

.minneapolis-hero .minneapolis-hero-form label {
    color: #000;
    font-size: 14px;
    font-weight: 400;
}

.minneapolis-hero .minneapolis-hero-form label span {
    color: #d00202;
    font-size: 14px;
    font-weight: 400;
}

.minneapolis-hero .minneapolis-hero-form ::placeholder {
    color: #000;
    font-size: 12px;
}

.minneapolis-hero .minneapolis-hero-form input {
    background-color: transparent;
    font-size: 12px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    border-radius: 0;
    color: #000;
}

.minneapolis-hero .minneapolis-hero-form form #options {
    background-color: transparent;
    width: 100%;
    color: #000;
    height: 30px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    font-size: 12px;
}

.minneapolis-hero .minneapolis-hero-form form option {
    color: #000;
    height: 30px;
}

.minneapolis-hero .minneapolis-hero-form input:focus {
    background-color: transparent;
    font-size: 14px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    border-radius: 0;
}

.minneapolis-hero .heading h3 {
    color: #000;
    font-size: 20px;
    font-family: Inter;
    font-weight: 700;
}

.minneapolis-hero .contact-area {
    margin-top: 16px;
}

.minneapolis-hero .contact-area .icon img {
    margin-right: 8px;
}

.minneapolis-hero .contact-area .num h6 {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    font-family: Inter;
}

.minneapolis-hero .contact-area .num p {
    color: #fff;
    font-size: 14px;
    font-weight: 300;
}

.phoenix-hero {
    background-image: url(../images/phoenix/photo-phoneix-city.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100vh;
}

.phoenix-hero .text-area {
    padding: 100px 0;
}

.phoenix-hero .text-area h6 {
    font-size: 18px;
    color: #ffc100;
    margin-bottom: 8px;
    font-family: Poppins;
    font-weight: 700;
    text-shadow: #ffc100;
}

.phoenix-hero .text-area a {
    font-size: 15px;
    color: #ffc100;
    margin-bottom: 8px;
    font-family: Poppins;
    font-weight: 600;
    text-decoration: underline;
    text-transform: uppercase;
}

.phoenix-hero .text-area h1 {
    font-size: 46px;
    margin-bottom: 12px;
    font-family: Inter;
    font-weight: 900;
    color: #fff;
    line-height: 50px;
}

.phoenix-hero .text-area p {
    font-size: 15px;
    color: #fff;
    margin-bottom: 20px;
    font-family: Inter;
    font-weight: 400;
}

.phoenix-hero .text-area .btn {
    line-height: 0;
    padding: 22px 40px;
    border-radius: 4px;
    transition: 0.5s;
    color: #fff;
    background: #d00202;
    font-size: 18px;
    font-weight: 500;
    outline: 0;
    border: none;
    width: 200px;
    border-radius: 50px;
}

.phoenix-hero .phoenix-hero-form {
    background-color: #fff !important;
    padding: 30px 24px;
    width: 65%;
    margin: 0 auto;
    margin-top: 60px;
    border-radius: 20px;
}

.phoenix-hero .phoenix-hero-form label {
    color: #000;
    font-size: 14px;
    font-weight: 400;
}

.phoenix-hero .phoenix-hero-form label span {
    color: #d00202;
    font-size: 14px;
    font-weight: 400;
}

.phoenix-hero .phoenix-hero-form ::placeholder {
    color: #000;
    font-size: 12px;
}

.phoenix-hero .phoenix-hero-form input {
    background-color: transparent;
    font-size: 12px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    border-radius: 0;
    color: #000;
}

.phoenix-hero .phoenix-hero-form form #options {
    background-color: transparent;
    width: 100%;
    color: #000;
    height: 30px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    font-size: 12px;
}

.phoenix-hero .phoenix-hero-form form option {
    color: #000;
    height: 30px;
}

.phoenix-hero .phoenix-hero-form input:focus {
    background-color: transparent;
    font-size: 14px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    border-radius: 0;
}

.phoenix-hero .heading h3 {
    color: #000;
    font-size: 20px;
    font-family: Inter;
    font-weight: 700;
}

.phoenix-hero .contact-area {
    margin-top: 16px;
}

.phoenix-hero .contact-area .icon img {
    margin-right: 8px;
}

.phoenix-hero .contact-area .num h6 {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    font-family: Inter;
}

.phoenix-hero .contact-area .num p {
    color: #fff;
    font-size: 14px;
    font-weight: 300;
}

.new-orleans-hero {
    background-image: url(../images/new-orleans/ede6167d-14f2-491c-b5f.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100vh;
}

.new-orleans-hero .text-area {
    padding: 100px 0;
}

.new-orleans-hero .text-area h6 {
    font-size: 18px;
    color: #ffc100;
    margin-bottom: 8px;
    font-family: Poppins;
    font-weight: 700;
    text-shadow: #ffc100;
}

.new-orleans-hero .text-area a {
    font-size: 15px;
    color: #ffc100;
    margin-bottom: 8px;
    font-family: Poppins;
    font-weight: 600;
    text-decoration: underline;
    text-transform: uppercase;
}

.new-orleans-hero .text-area h1 {
    font-size: 46px;
    margin-bottom: 12px;
    font-family: Inter;
    font-weight: 900;
    color: #fff;
    line-height: 50px;
}

.new-orleans-hero .text-area p {
    font-size: 15px;
    color: #fff;
    margin-bottom: 20px;
    font-family: Inter;
    font-weight: 400;
}

.new-orleans-hero .text-area .btn {
    line-height: 0;
    padding: 22px 40px;
    border-radius: 4px;
    transition: 0.5s;
    color: #fff;
    background: #d00202;
    font-size: 18px;
    font-weight: 500;
    outline: 0;
    border: none;
    width: 200px;
    border-radius: 50px;
}

.new-orleans-hero .new-orleans-hero-form {
    background-color: #fff !important;
    padding: 30px 24px;
    width: 65%;
    margin: 0 auto;
    margin-top: 60px;
    border-radius: 20px;
}

.new-orleans-hero .new-orleans-hero-form label {
    color: #000;
    font-size: 14px;
    font-weight: 400;
}

.new-orleans-hero .new-orleans-hero-form label span {
    color: #d00202;
    font-size: 14px;
    font-weight: 400;
}

.new-orleans-hero .new-orleans-hero-form ::placeholder {
    color: #000;
    font-size: 12px;
}

.new-orleans-hero .new-orleans-hero-form input {
    background-color: transparent;
    font-size: 12px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    border-radius: 0;
    color: #000;
}

.new-orleans-hero .new-orleans-hero-form form #options {
    background-color: transparent;
    width: 100%;
    color: #000;
    height: 30px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    font-size: 12px;
}

.new-orleans-hero .new-orleans-hero-form form option {
    color: #000;
    height: 30px;
}

.new-orleans-hero .new-orleans-hero-form input:focus {
    background-color: transparent;
    font-size: 14px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    border-radius: 0;
}

.new-orleans-hero .heading h3 {
    color: #000;
    font-size: 20px;
    font-family: Inter;
    font-weight: 700;
}

.new-orleans-hero .contact-area {
    margin-top: 16px;
}

.new-orleans-hero .contact-area .icon img {
    margin-right: 8px;
}

.new-orleans-hero .contact-area .num h6 {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    font-family: Inter;
}

.new-orleans-hero .contact-area .num p {
    color: #fff;
    font-size: 14px;
    font-weight: 300;
}

.orlando-hero {
    background-image: url(../images/orlando/obj-partnership-photos.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100vh;
}

.orlando-hero .text-area {
    padding: 100px 0;
}

.orlando-hero .text-area h6 {
    font-size: 18px;
    color: #ffc100;
    margin-bottom: 8px;
    font-family: Poppins;
    font-weight: 700;
    text-shadow: #ffc100;
}

.orlando-hero .text-area a {
    font-size: 15px;
    color: #ffc100;
    margin-bottom: 8px;
    font-family: Poppins;
    font-weight: 600;
    text-decoration: underline;
    text-transform: uppercase;
}

.orlando-hero .text-area h1 {
    font-size: 46px;
    margin-bottom: 12px;
    font-family: Inter;
    font-weight: 900;
    color: #fff;
    line-height: 50px;
}

.orlando-hero .text-area p {
    font-size: 15px;
    color: #fff;
    margin-bottom: 20px;
    font-family: Inter;
    font-weight: 400;
}

.orlando-hero .text-area .btn {
    line-height: 0;
    padding: 22px 40px;
    border-radius: 4px;
    transition: 0.5s;
    color: #fff;
    background: #d00202;
    font-size: 18px;
    font-weight: 500;
    outline: 0;
    border: none;
    width: 200px;
    border-radius: 50px;
}

.orlando-hero .orlando-hero-form {
    background-color: #fff !important;
    padding: 30px 24px;
    width: 65%;
    margin: 0 auto;
    margin-top: 60px;
    border-radius: 20px;
}

.orlando-hero .orlando-hero-form label {
    color: #000;
    font-size: 14px;
    font-weight: 400;
}

.orlando-hero .orlando-hero-form label span {
    color: #d00202;
    font-size: 14px;
    font-weight: 400;
}

.orlando-hero .orlando-hero-form ::placeholder {
    color: #000;
    font-size: 12px;
}

.orlando-hero .orlando-hero-form input {
    background-color: transparent;
    font-size: 12px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    border-radius: 0;
    color: #000;
}

.orlando-hero .orlando-hero-form form #options {
    background-color: transparent;
    width: 100%;
    color: #000;
    height: 30px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    font-size: 12px;
}

.orlando-hero .orlando-hero-form form option {
    color: #000;
    height: 30px;
}

.orlando-hero .orlando-hero-form input:focus {
    background-color: transparent;
    font-size: 14px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    border-radius: 0;
}

.orlando-hero .heading h3 {
    color: #000;
    font-size: 20px;
    font-family: Inter;
    font-weight: 700;
}

.orlando-hero .contact-area {
    margin-top: 16px;
}

.orlando-hero .contact-area .icon img {
    margin-right: 8px;
}

.orlando-hero .contact-area .num h6 {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    font-family: Inter;
}

.orlando-hero .contact-area .num p {
    color: #fff;
    font-size: 14px;
    font-weight: 300;
}

.philadelphia-hero {
    background-image: url(../images/philadelphia/57e06b13fdb2ed73.jpeg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100vh;
}

.philadelphia-hero .text-area {
    padding: 100px 0;
}

.philadelphia-hero .text-area h6 {
    font-size: 18px;
    color: #ffc100;
    margin-bottom: 8px;
    font-family: Poppins;
    font-weight: 700;
    text-shadow: #ffc100;
}

.philadelphia-hero .text-area a {
    font-size: 15px;
    color: #ffc100;
    margin-bottom: 8px;
    font-family: Poppins;
    font-weight: 600;
    text-decoration: underline;
    text-transform: uppercase;
}

.philadelphia-hero .text-area h1 {
    font-size: 46px;
    margin-bottom: 12px;
    font-family: Inter;
    font-weight: 900;
    color: #fff;
    line-height: 50px;
}

.philadelphia-hero .text-area p {
    font-size: 15px;
    color: #fff;
    margin-bottom: 20px;
    font-family: Inter;
    font-weight: 400;
}

.philadelphia-hero .text-area .btn {
    line-height: 0;
    padding: 22px 40px;
    border-radius: 4px;
    transition: 0.5s;
    color: #fff;
    background: #d00202;
    font-size: 18px;
    font-weight: 500;
    outline: 0;
    border: none;
    width: 200px;
    border-radius: 50px;
}

.philadelphia-hero .philadelphia-hero-form {
    background-color: #fff !important;
    padding: 30px 24px;
    width: 65%;
    margin: 0 auto;
    margin-top: 60px;
    border-radius: 20px;
}

.philadelphia-hero .philadelphia-hero-form label {
    color: #000;
    font-size: 14px;
    font-weight: 400;
}

.philadelphia-hero .philadelphia-hero-form label span {
    color: #d00202;
    font-size: 14px;
    font-weight: 400;
}

.philadelphia-hero .philadelphia-hero-form ::placeholder {
    color: #000;
    font-size: 12px;
}

.philadelphia-hero .philadelphia-hero-form input {
    background-color: transparent;
    font-size: 12px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    border-radius: 0;
    color: #000;
}

.philadelphia-hero .philadelphia-hero-form form #options {
    background-color: transparent;
    width: 100%;
    color: #000;
    height: 30px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    font-size: 12px;
}

.philadelphia-hero .philadelphia-hero-form form option {
    color: #000;
    height: 30px;
}

.philadelphia-hero .philadelphia-hero-form input:focus {
    background-color: transparent;
    font-size: 14px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    border-radius: 0;
}

.philadelphia-hero .heading h3 {
    color: #000;
    font-size: 20px;
    font-family: Inter;
    font-weight: 700;
}

.philadelphia-hero .contact-area {
    margin-top: 16px;
}

.philadelphia-hero .contact-area .icon img {
    margin-right: 8px;
}

.philadelphia-hero .contact-area .num h6 {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    font-family: Inter;
}

.philadelphia-hero .contact-area .num p {
    color: #fff;
    font-size: 14px;
    font-weight: 300;
}

.Portland-hero {
    background-image: url(../images/Portland/portand-oregon-PO.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100vh;
}

.Portland-hero .text-area {
    padding: 100px 0;
}

.Portland-hero .text-area h6 {
    font-size: 18px;
    color: #ffc100;
    margin-bottom: 8px;
    font-family: Poppins;
    font-weight: 700;
    text-shadow: #ffc100;
}

.Portland-hero .text-area a {
    font-size: 15px;
    color: #ffc100;
    margin-bottom: 8px;
    font-family: Poppins;
    font-weight: 600;
    text-decoration: underline;
    text-transform: uppercase;
}

.Portland-hero .text-area h1 {
    font-size: 46px;
    margin-bottom: 12px;
    font-family: Inter;
    font-weight: 900;
    color: #fff;
    line-height: 50px;
}

.Portland-hero .text-area p {
    font-size: 15px;
    color: #fff;
    margin-bottom: 20px;
    font-family: Inter;
    font-weight: 400;
}

.Portland-hero .text-area .btn {
    line-height: 0;
    padding: 22px 40px;
    border-radius: 4px;
    transition: 0.5s;
    color: #fff;
    background: #d00202;
    font-size: 18px;
    font-weight: 500;
    outline: 0;
    border: none;
    width: 200px;
    border-radius: 50px;
}

.Portland-hero .Portland-hero-form {
    background-color: #fff !important;
    padding: 30px 24px;
    width: 65%;
    margin: 0 auto;
    margin-top: 60px;
    border-radius: 20px;
}

.Portland-hero .Portland-hero-form label {
    color: #000;
    font-size: 14px;
    font-weight: 400;
}

.Portland-hero .Portland-hero-form label span {
    color: #d00202;
    font-size: 14px;
    font-weight: 400;
}

.Portland-hero .Portland-hero-form ::placeholder {
    color: #000;
    font-size: 12px;
}

.Portland-hero .Portland-hero-form input {
    background-color: transparent;
    font-size: 12px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    border-radius: 0;
    color: #000;
}

.Portland-hero .Portland-hero-form form #options {
    background-color: transparent;
    width: 100%;
    color: #000;
    height: 30px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    font-size: 12px;
}

.Portland-hero .Portland-hero-form form option {
    color: #000;
    height: 30px;
}

.Portland-hero .Portland-hero-form input:focus {
    background-color: transparent;
    font-size: 14px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    border-radius: 0;
}

.Portland-hero .heading h3 {
    color: #000;
    font-size: 20px;
    font-family: Inter;
    font-weight: 700;
}

.Portland-hero .contact-area {
    margin-top: 16px;
}

.Portland-hero .contact-area .icon img {
    margin-right: 8px;
}

.Portland-hero .contact-area .num h6 {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    font-family: Inter;
}

.Portland-hero .contact-area .num p {
    color: #fff;
    font-size: 14px;
    font-weight: 300;
}

.san-antonio-hero {
    background-image: url(../images/San-antonio/h2.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100vh;
}

.san-antonio-hero .text-area {
    padding: 100px 0;
}

.san-antonio-hero .text-area h6 {
    font-size: 18px;
    color: #ffc100;
    margin-bottom: 8px;
    font-family: Poppins;
    font-weight: 700;
    text-shadow: #ffc100;
}

.san-antonio-hero .text-area a {
    font-size: 15px;
    color: #ffc100;
    margin-bottom: 8px;
    font-family: Poppins;
    font-weight: 600;
    text-decoration: underline;
    text-transform: uppercase;
}

.san-antonio-hero .text-area h1 {
    font-size: 46px;
    margin-bottom: 12px;
    font-family: Inter;
    font-weight: 900;
    color: #fff;
    line-height: 50px;
}

.san-antonio-hero .text-area p {
    font-size: 15px;
    color: #fff;
    margin-bottom: 20px;
    font-family: Inter;
    font-weight: 400;
}

.san-antonio-hero .text-area .btn {
    line-height: 0;
    padding: 22px 40px;
    border-radius: 4px;
    transition: 0.5s;
    color: #fff;
    background: #d00202;
    font-size: 18px;
    font-weight: 500;
    outline: 0;
    border: none;
    width: 200px;
    border-radius: 50px;
}

.san-antonio-hero .san-antonio-hero-form {
    background-color: #fff !important;
    padding: 30px 24px;
    width: 65%;
    margin: 0 auto;
    margin-top: 60px;
    border-radius: 20px;
}

.san-antonio-hero .san-antonio-hero-form label {
    color: #000;
    font-size: 14px;
    font-weight: 400;
}

.san-antonio-hero .san-antonio-hero-form label span {
    color: #d00202;
    font-size: 14px;
    font-weight: 400;
}

.san-antonio-hero .san-antonio-hero-form ::placeholder {
    color: #000;
    font-size: 12px;
}

.san-antonio-hero .san-antonio-hero-form input {
    background-color: transparent;
    font-size: 12px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    border-radius: 0;
    color: #000;
}

.san-antonio-hero .san-antonio-hero-form form #options {
    background-color: transparent;
    width: 100%;
    color: #000;
    height: 30px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    font-size: 12px;
}

.san-antonio-hero .san-antonio-hero-form form option {
    color: #000;
    height: 30px;
}

.san-antonio-hero .san-antonio-hero-form input:focus {
    background-color: transparent;
    font-size: 14px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    border-radius: 0;
}

.san-antonio-hero .heading h3 {
    color: #000;
    font-size: 20px;
    font-family: Inter;
    font-weight: 700;
}

.san-antonio-hero .contact-area {
    margin-top: 16px;
}

.san-antonio-hero .contact-area .icon img {
    margin-right: 8px;
}

.san-antonio-hero .contact-area .num h6 {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    font-family: Inter;
}

.san-antonio-hero .contact-area .num p {
    color: #fff;
    font-size: 14px;
    font-weight: 300;
}

.san-diego-hero {
    background-image: url(../images/san-diego/f8.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100vh;
}

.san-diego-hero .text-area {
    padding: 100px 0;
}

.san-diego-hero .text-area h6 {
    font-size: 18px;
    color: #ffc100;
    margin-bottom: 8px;
    font-family: Poppins;
    font-weight: 700;
    text-shadow: #ffc100;
}

.san-diego-hero .text-area a {
    font-size: 15px;
    color: #ffc100;
    margin-bottom: 8px;
    font-family: Poppins;
    font-weight: 600;
    text-decoration: underline;
    text-transform: uppercase;
}

.san-diego-hero .text-area h1 {
    font-size: 46px;
    margin-bottom: 12px;
    font-family: Inter;
    font-weight: 900;
    color: #fff;
    line-height: 50px;
}

.san-diego-hero .text-area p {
    font-size: 15px;
    color: #fff;
    margin-bottom: 20px;
    font-family: Inter;
    font-weight: 400;
}

.san-diego-hero .text-area .btn {
    line-height: 0;
    padding: 22px 40px;
    border-radius: 4px;
    transition: 0.5s;
    color: #fff;
    background: #d00202;
    font-size: 18px;
    font-weight: 500;
    outline: 0;
    border: none;
    width: 200px;
    border-radius: 50px;
}

.san-diego-hero .san-diego-hero-form {
    background-color: #fff !important;
    padding: 30px 24px;
    width: 65%;
    margin: 0 auto;
    margin-top: 60px;
    border-radius: 20px;
}

.san-diego-hero .san-diego-hero-form label {
    color: #000;
    font-size: 14px;
    font-weight: 400;
}

.san-diego-hero .san-diego-hero-form label span {
    color: #d00202;
    font-size: 14px;
    font-weight: 400;
}

.san-diego-hero .san-diego-hero-form ::placeholder {
    color: #000;
    font-size: 12px;
}

.san-diego-hero .san-diego-hero-form input {
    background-color: transparent;
    font-size: 12px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    border-radius: 0;
    color: #000;
}

.san-diego-hero .san-diego-hero-form form #options {
    background-color: transparent;
    width: 100%;
    color: #000;
    height: 30px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    font-size: 12px;
}

.san-diego-hero .san-diego-hero-form form option {
    color: #000;
    height: 30px;
}

.san-diego-hero .san-diego-hero-form input:focus {
    background-color: transparent;
    font-size: 14px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    border-radius: 0;
}

.san-diego-hero .heading h3 {
    color: #000;
    font-size: 20px;
    font-family: Inter;
    font-weight: 700;
}

.san-diego-hero .contact-area {
    margin-top: 16px;
}

.san-diego-hero .contact-area .icon img {
    margin-right: 8px;
}

.san-diego-hero .contact-area .num h6 {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    font-family: Inter;
}

.san-diego-hero .contact-area .num p {
    color: #fff;
    font-size: 14px;
    font-weight: 300;
}

.seattle-hero {
    background-image: url(../images/seattle/01-velo-header-seatt.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100vh;
}

.seattle-hero .text-area {
    padding: 100px 0;
}

.seattle-hero .text-area h6 {
    font-size: 18px;
    color: #ffc100;
    margin-bottom: 8px;
    font-family: Poppins;
    font-weight: 700;
    text-shadow: #ffc100;
}

.seattle-hero .text-area a {
    font-size: 15px;
    color: #ffc100;
    margin-bottom: 8px;
    font-family: Poppins;
    font-weight: 600;
    text-decoration: underline;
    text-transform: uppercase;
}

.seattle-hero .text-area h1 {
    font-size: 46px;
    margin-bottom: 12px;
    font-family: Inter;
    font-weight: 900;
    color: #fff;
    line-height: 50px;
}

.seattle-hero .text-area p {
    font-size: 15px;
    color: #fff;
    margin-bottom: 20px;
    font-family: Inter;
    font-weight: 400;
}

.seattle-hero .text-area .btn {
    line-height: 0;
    padding: 22px 40px;
    border-radius: 4px;
    transition: 0.5s;
    color: #fff;
    background: #d00202;
    font-size: 18px;
    font-weight: 500;
    outline: 0;
    border: none;
    width: 200px;
    border-radius: 50px;
}

.seattle-hero .seattle-hero-form {
    background-color: #fff !important;
    padding: 30px 24px;
    width: 65%;
    margin: 0 auto;
    margin-top: 60px;
    border-radius: 20px;
}

.seattle-hero .seattle-hero-form label {
    color: #000;
    font-size: 14px;
    font-weight: 400;
}

.seattle-hero .seattle-hero-form label span {
    color: #d00202;
    font-size: 14px;
    font-weight: 400;
}

.seattle-hero .seattle-hero-form ::placeholder {
    color: #000;
    font-size: 12px;
}

.seattle-hero .seattle-hero-form input {
    background-color: transparent;
    font-size: 12px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    border-radius: 0;
    color: #000;
}

.seattle-hero .seattle-hero-form form #options {
    background-color: transparent;
    width: 100%;
    color: #000;
    height: 30px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    font-size: 12px;
}

.seattle-hero .seattle-hero-form form option {
    color: #000;
    height: 30px;
}

.seattle-hero .seattle-hero-form input:focus {
    background-color: transparent;
    font-size: 14px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    border-radius: 0;
}

.seattle-hero .heading h3 {
    color: #000;
    font-size: 20px;
    font-family: Inter;
    font-weight: 700;
}

.seattle-hero .contact-area {
    margin-top: 16px;
}

.seattle-hero .contact-area .icon img {
    margin-right: 8px;
}

.seattle-hero .contact-area .num h6 {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    font-family: Inter;
}

.seattle-hero .contact-area .num p {
    color: #fff;
    font-size: 14px;
    font-weight: 300;
}

#home-hero {
    width: 100%;
    background-size: cover;
    background-color: #000;
    position: relative;
    padding: 0;
    height: 100vh;
}

#myVideo {
    position: absolute;
    right: 0;
    bottom: -5%;
    min-width: 100%;
    min-height: auto;
}

#home-hero .fsect {
    margin-bottom: 100px;
}

#home-hero .content-area h5 {
    font-size: 18px;
    font-family: Inter, sans-serif;
    color: #f2bc18;
}

#home-hero .content-area h2 {
    margin: 10px 0 18px 0;
    font-size: 48px;
    font-family: Inter, sans-serif;
    font-weight: 900;
    line-height: 56px;
    color: #fff;
    margin-bottom: 50px;
}

#home-hero .form-area {
    background-color: #1f1f1f;
    padding: 0 0;
    border-bottom: 2px solid #d00202;
    border-left: 3px solid #d00202;
}

#home-hero .form-area .col-md-3 {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 0 !important;
}

#home-hero .form-area .input-group {
    padding: 0 8px;
    margin: 0 !important;
}

#home-hero .form-area .input-group input {
    background-color: transparent;
    border: none;
    outline: 0;
    border-bottom: 1px solid #f1f1f1;
    color: #fff;
    padding: 8px 26px;
    border-radius: 0;
}

#home-hero .form-area .input-group input:active,
#home-hero .form-area .input-group input:focus {
    background-color: transparent;
    border: none;
    outline: 0;
    box-shadow: none;
}

#home-hero .form-area .input-group ::placeholder {
    color: #fff;
}

#home-hero .form-area .input-group .fa {
    color: #fff;
    font-size: 16px;
    position: relative;
    top: 12px;
    left: 18px;
}

#home-hero .form-area .input-group button {
    background-color: #d00202;
    border-bottom: none;
    color: #fff;
    padding: 20px 0;
    width: 99%;
    height: 50px;
    font-size: 18px;
}

#home-hero .home-numbers .counter-box {
    border-left: 2px solid #333;
}

#home-hero .home-numbers .firstchild {
    border-left: none !important;
}

#home-hero .home-numbers .counter-box .numbers-img img {
    margin-right: 6px;
    object-fit: contain;
}

#home-hero .home-numbers .counter-box .numbers-img h3 {
    font-family: Inter, sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    padding-top: 12px;
    margin-left: 1px;
}

#home-hero .home-numbers .counter-box p {
    font-weight: 500;
    font-size: 14px;
    margin-top: 8px;
    color: #828282 !important;
}

.home-problem-facing-qs {
    background-image: url(../images/homepage/questions-avatar-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 110vh;
}

.home-problem-facing-heading .heading h2 {
    font-family: Inter;
    font-weight: 900;
    font-size: 36px;
    line-height: 40px;
    margin-bottom: 50px;
    background: -webkit-linear-gradient(left, #367aa7 30%, #008c41 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.home-problem-facing-qs .questions .ques-bg {
    background-image: url(../images/homepage/question-bg.png);
    background-repeat: no-repeat;
    background-size: contain;
    max-width: 100%;
    height: 80px;
    margin-bottom: 10px;
}

.home-problem-facing-qs .questions .ques-text h6 {
    padding: 25px;
    color: #fff;
    font-family: Inter;
    font-weight: 500;
    line-height: 20px;
    font-size: 16px;
}

.home-digital-expert {
    background-image: url(../images/homepage/bg-buttons.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 40vh;
}

.home-digital-expert .heading h2 {
    font-family: Inter;
    font-weight: 900;
    font-size: 36px;
    line-height: 40px;
    margin-bottom: 50px;
    background: -webkit-linear-gradient(left, #367aa7 30%, #008c41 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.home-digital-expert .cta-bg {
    background-image: url(../images/homepage/whatsapp-bg.png);
    background-repeat: no-repeat;
    background-size: contain;
    max-width: 100%;
    height: 80px;
    margin-bottom: 10px;
    background-position: right;
}

.home-digital-expert .cta-bg2 {
    background-image: url(../images/homepage/telegram.png);
    background-repeat: no-repeat;
    background-size: contain;
    max-width: 100%;
    height: 80px;
    margin-bottom: 10px;
}

.home-digital-expert .cta-bg .cta-text h6 {
    padding: 30px;
    color: #fff;
    font-family: Inter;
    font-weight: 600;
    line-height: 20px;
    font-size: 18px;
    margin-left: 260px;
}

.home-digital-expert .cta-bg2 .cta-text h6 {
    padding: 30px;
    color: #fff;
    font-family: Inter;
    font-weight: 600;
    line-height: 20px;
    font-size: 18px;
    margin-left: 80px;
}

.home-digital-marketing .text-area h3 {
    font-family: Inter;
    font-weight: 900;
    font-size: 42px;
    line-height: 50px;
    margin-bottom: 30px;
    background: -webkit-linear-gradient(left, #367aa7 30%, #008c41 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.home-digital-marketing .text-area p {
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 25px;
    color: #000;
    padding-right: 50px;
}

.home-digital-marketing .text-area .input-group input {
    border-bottom: 2px solid #d00202;
    border-left: 2px solid #d00202;
    border-radius: 0;
    padding: 12px 20px;
}

.home-digital-marketing .text-area .input-group input:focus {
    box-shadow: none;
    outline: 0;
}

.home-digital-marketing .text-area .input-group .btn {
    width: 40%;
    background-color: #d00202;
    border: none;
    outline: 0;
    font-size: 14px;
    line-height: 26px;
    padding: 12px 20px;
}

.home-digital-marketing .img-wrapper {
    margin-top: -90px;
    max-width: 1000px;
}

.home-roi-startegy .text-area {
    padding-right: 80px;
}

.home-roi-startegy .text-area h3 {
    font-family: Inter;
    margin-bottom: 20px;
    font-size: 42px;
    font-weight: 900;
    line-height: 48px;
    background: -webkit-linear-gradient(left, #367aa7 30%, #008c41 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.home-roi-startegy .text-area h3 span {
    font-family: Inter;
    margin-bottom: 20px;
    font-size: 42px;
    font-weight: 900;
    line-height: 48px;
    background: #484848;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.home-roi-startegy .text-area .roi {
    color: #000 !important;
}

.home-roi-startegy .text-area .headings h5 {
    font-family: Inter;
    margin-bottom: 0;
    font-size: 24px;
    font-weight: 700;
    line-height: 40px;
    color: #000;
}

.home-roi-startegy .text-area .headings {
    padding: 12px 0;
}

.home-roi-startegy .text-area .headings:hover {
    background-color: #eff5f6;
    padding: 12px 16px;
    border: 1px solid #9ac5bf;
    border-radius: 12px;
    transition: all 0.5s ease-in-out;
}

.home-roi-startegy .text-area .headings:hover h5 {
    color: #348e8c;
}

.home-roi-startegy .text-area .headings p {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 300;
    line-height: 22px;
    color: #000;
    font-family: Inter;
}

.home-roi-startegy .r {
    font-family: Inter, sans-serif;
    color: #2c6d8b;
    font-size: 40px;
    font-weight: 700;
    line-height: 40px;
}

.home-roi-startegy .o {
    font-family: Inter, sans-serif;
    color: #2c6d8b;
    font-size: 40px;
    font-weight: 700;
    line-height: 40px;
}

.home-roi-startegy .i {
    font-family: Inter, sans-serif;
    color: #2c6d8b;
    font-size: 40px;
    font-weight: 700;
    line-height: 40px;
}

.home-portfolio .heading h1 {
    font-family: Inter;
    margin-bottom: 20px;
    font-size: 50px;
    font-weight: 900;
    line-height: 48px;
    background: -webkit-linear-gradient(left, #367aa7 30%, #008c41 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.home-portfolio .heading h6 {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    margin-bottom: 40px;
    padding-right: 80px;
}

.home-portfolio .inner-heading h1 {
    font-size: 40px;
    font-weight: 700;
    color: #000;
}

.home-portfolio .inner-heading h6 {
    font-size: 16px;
    font-weight: 500;
    color: #000;
}

.home-portfolio .nav-tabs {
    border: 0;
}

.home-portfolio .nav-link {
    font-size: 18px;
    border: 0;
    margin: 5px 10px;
    padding: 10px 26px;
    transition: 0.3s;
    color: #000;
    background-color: #fff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.12);
}

.home-portfolio .nav-link:hover {
    color: #8bda24;
}

.home-portfolio .nav-link img {
    margin-right: 16px;
}

.home-portfolio .nav-link h4 {
    font-size: 18px;
    font-weight: 600;
}

.home-portfolio .nav-link p {
    font-size: 14px;
    margin-bottom: 0;
}

.home-portfolio .nav-link.active {
    background-color: #fff;
}

.home-portfolio .nav-link.active h4 {
    color: #1bac91;
}

.home-portfolio .tab-pane.active {
    -webkit-animation: slide-down 0.5s ease-out;
    animation: slide-down 0.5s ease-out;
}

.home-portfolio .tab-pane {
    margin-top: 20px;
}

.home-portfolio .tab-pane figure {
    margin-top: 50px;
}

.home-portfolio {
    background-color: #fff;
}

.home-portfolio .nav-links {
    font-size: 18px;
    border: 0;
    margin: 5px 10px;
    padding: 10px 26px;
    transition: 0.3s;
    color: #000;
    background-color: #fff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.12);
}

.home-portfolio .nav-links:hover {
    color: #8bda24;
}

.home-portfolio .nav-links img {
    margin-right: 16px;
}

.home-portfolio .nav-linsks h4 {
    font-size: 18px;
    font-weight: 600;
}

.home-portfolio .nav-links p {
    font-size: 14px;
    margin-bottom: 0;
}

.home-portfolio .nav-links.active {
    background-color: #fff;
    color: red;
}

.home-portfolio .nav-links.active h4 {
    color: #1bac91;
}

.home-portfolio .tabss .nav {
    float: left;
    position: relative;
}

.home-portfolio .tabss .nav .nav-item .nav-link {
    width: 250px;
}

.home-clients {
    padding: 50px 0;
}

.home-clients .text-area {
    margin-bottom: 20px;
}

.home-clients .text-area h3 {
    font-family: Inter, sans-serif;
    font-weight: 900;
    font-size: 44px;
    line-height: 55px;
    margin-bottom: 12px;
    background: -webkit-linear-gradient(left, #367aa7 30%, #008c41 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.home-clients .map-img img {
    max-width: 800px;
    position: relative;
}

.home-clients .one {
    position: absolute;
    top: 100px;
    left: 220px;
    color: #5cc004;
}

.home-clients .two {
    position: absolute;
    bottom: 280px;
    left: 400px;
    color: #5cc004;
}

.home-clients .three {
    position: absolute;
    top: 200px;
    left: 500px;
    color: #5cc004;
}

.home-clients .four {
    position: absolute;
    top: 220px;
    left: 250px;
    color: #5cc004;
}

.home-clients .five {
    position: absolute;
    bottom: 200px;
    right: 650px;
    color: #5cc004;
}

img.img-fluid-newcity {
    max-width: 7px;
    width: 20%;
    height: 18px;
    margin-top: 2px;
}

h2.verifived {
    font-family: Inter;
    font-size: 9px;
    font-weight: 600;
    font-style: italic;
    margin-top: 5px;
    margin-left: 4px;
}

img.img-fluid-reviews {
    width: 60%;
    height: 18px;
    margin-top: -17px;
    float: right;
    margin-right: 0;
}

h2.powered {
    font-family: Inter;
    font-size: 9px;
    font-weight: 600;
    font-style: italic;
    margin-top: 5px;
    margin-right: 86px;
}

img.img-fluid-avater {
    max-width: 7px;
    width: 13%;
    height: 40px;
    margin-top: -10px;
}

h2.heading-avater {
    font-family: 'Inter', sans-serif !important;
    font-size: 15px;
    font-weight: 700;
    margin-top: -6px;
    margin-left: -35px;
    width: 200px;
    color: #5c5c5c;
}

span.rating {
    font-family: 'Inter', sans-serif !important;
    font-size: 15px;
    color: #000;
}

.checkededs {
    float: left;
    margin-left: 54px;
    margin-top: -12%;
}

span.fa.fa-star.checked {
    color: #f29b11;
}

.middlecontentsss:before {
    background-image: url(../image/before.png);
    background-size: 26px 20px;
    display: inline-block;
    width: 100%;
    height: 20px;
    content: "";
    background-repeat: repeat-y;
    margin-left: 0;
    margin-top: -13px;
}

.middlecontentsss:after {
    background-image: url(../image/after.png);
    background-size: 26px 20px;
    width: 100%;
    height: 20px;
    content: "";
    background-repeat: repeat-y;
    margin-right: -90%;
    margin-top: 0;
    float: right;
}

.middlecontentsss {
    margin-top: -9px;
}

h4.middlecontent {
    font-size: 14px;
    font-family: Inter;
    text-align: justify;
    margin-left: 15px;
    margin-right: 15px;
}

.popup-container {
    position: absolute;
    top: 0;
}

.popup-box {
    margin: 0 33%;
    margin-left: -250px;
    width: 100%;
    padding: 20px 25px;
    z-index: 1000;
    margin: auto;
    top: 0;
    background-color: #ffff;
    display: none;
    box-shadow: 2px 3px 10px #898787;
    border-radius: 14px;
}

.popup-box div {
    clear: both;
}

.popup-box h3 {
    display: inline;
}

.popup-box nav.close {
    float: right;
    font-size: 20px;
    color: #000;
    background: green;
    z-index: 9999;
}

.popuptwo-container {
    position: absolute;
    top: 0;
    padding: 12px 30%;
}

.popup-box-two {
    margin: 0 33%;
    margin-left: -250px;
    width: 100%;
    padding: 20px 25px;
    z-index: 1000;
    margin: auto;
    top: 0;
    background-color: #ffff;
    display: none;
    box-shadow: 2px 3px 10px #898787;
    border-radius: 14px;
}

.popup-box-two div {
    clear: both;
}

.popup-box-two h3 {
    display: inline;
}

.popup-box-two nav.close {
    float: right;
    font-size: 20px;
    color: #000;
    background: green;
    z-index: 9999;
}

.popupthree-container {
    position: absolute;
    top: 0;
    padding: 12px 30%;
}

.popup-box-three {
    margin: 0 33%;
    margin-left: -250px;
    width: 100%;
    padding: 20px 25px;
    z-index: 1000;
    margin: auto;
    top: 0;
    background-color: #ffff;
    display: none;
    box-shadow: 2px 3px 10px #898787;
    border-radius: 14px;
}

.popup-box-three div {
    clear: both;
}

.popup-box-three h3 {
    display: inline;
}

.popup-box-three nav.close {
    float: right;
    font-size: 20px;
    color: #000;
    background: green;
    z-index: 9999;
}

.popupfour-container {
    position: absolute;
    top: 0;
    padding: 12px 16%;
}

.popup-box-four {
    margin: 0 33%;
    margin-left: -250px;
    width: 100%;
    padding: 20px 25px;
    z-index: 1000;
    margin: auto;
    top: 0;
    background-color: #ffff;
    display: none;
    box-shadow: 2px 3px 10px #898787;
    border-radius: 14px;
}

.popup-box-four div {
    clear: both;
}

.popup-box-four h3 {
    display: inline;
}

.popup-box-four nav.close {
    float: right;
    font-size: 20px;
    color: #000;
    background: green;
    z-index: 9999;
}

.popupfive-container {
    position: absolute;
    top: 0;
    padding: 12px 28%;
}

.popup-box-five {
    margin: 0 33%;
    margin-left: -250px;
    width: 100%;
    padding: 20px 25px;
    z-index: 1000;
    margin: auto;
    top: 0;
    background-color: #ffff;
    display: none;
    box-shadow: 2px 3px 10px #898787;
    border-radius: 14px;
}

.popup-box-five div {
    clear: both;
}

.popup-box-five h3 {
    display: inline;
}

.popup-box-five nav.close {
    float: right;
    font-size: 20px;
    color: #000;
    background: green;
    z-index: 9999;
}

.home-feature-clients .heading h2 {
    font-family: Inter;
    margin-bottom: 50px;
    font-size: 50px;
    font-weight: 900;
    line-height: 48px;
    background: -webkit-linear-gradient(left, #367aa7 30%, #008c41 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.home-feature-clients .col-lg-3 {
    margin: 40px 0;
}

.home-feature-clients .col-lg-3 .client-logo img {
    max-width: 210px !important;
}

.home-free-proposal {
    background: url(../images/homepage/free-proposal.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    padding: 0 0 50px 0;
}

.home-free-proposal .heading h2 {
    font-family: Inter;
    font-size: 40px;
    font-weight: 900;
    color: #fff;
    line-height: 40px;
    margin-bottom: 12px;
}

.home-free-proposal .heading p {
    font-size: 16px;
    line-height: 20px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 40px;
}

.home-free-proposal .heading input {
    padding: 12px 25px;
    border-radius: 50px;
}

.home-free-proposal .heading .btn {
    display: block;
    width: 100%;
    background-color: #d00202;
    border-radius: 50px;
    border: none;
    outline: 0;
}

.home-free-proposal .img-wrapper img {
    max-width: 550px;
    position: absolute;
    bottom: 0;
}

.home-faq {
    background: url(../images/homepage/faq-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100vh;
}

.home-faq .section-title h2 {
    font-family: Inter;
    margin-bottom: 50px;
    font-size: 40px;
    margin-left: 80px;
    font-weight: 900;
    line-height: 40px;
    background: -webkit-linear-gradient(left, #367aa7 30%, #008c41 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.home-faq .faq-list {
    padding: 0 70px;
}

.home-faq .faq-list ul {
    padding: 0;
    list-style: none;
}

.home-faq .faq-list li+li {
    margin-top: 15px;
}

.home-faq .faq-list li {
    padding: 20px 0;
    background-image: linear-gradient(to right, #5389b7, #2ba672);
    border-bottom: 1px solid #5d5d5d;
    position: relative;
    padding: 12px 32px;
    border-radius: 10px;
}

.home-faq .faq-list a {
    display: block;
    position: relative;
    font-family: Inter;
    font-size: 16px;
    line-height: 26px;
    font-weight: 300;
    padding: 0;
    outline: 0;
    cursor: pointer;
    color: #fff;
}

.home-faq .faq-list .icon-show,
.landing-faq .faq-list .icon-close {
    font-size: 24px;
    position: absolute;
    right: 0;
    top: 0;
    color: #fff;
}

.home-faq .faq-list p {
    margin-bottom: 0;
    padding: 10px 0 0 0;
    font-size: 13px;
    color: #fcfcfc;
}

.home-faq .faq-list .icon-show {
    display: none;
}

.home-faq .faq-list a.collapsed {
    color: #fff;
}

.home-faq .faq-list a.collapsed .icon-show {
    display: inline-block;
    font-size: 16px;
    margin-top: 4px;
}

.home-faq .faq-list .fa-chevron-up:before {
    font-size: 16px;
    margin-top: 4px;
}

.home-faq .faq-list a.collapsed .icon-close {
    display: none;
}

.home-marketing-expertize {
    padding: 50px 0 40px 0;
    background-color: #fff;
}

.home-marketing-expertize .row {
    overflow: hidden;
}

.home-marketing-expertize .box-area {
    padding: 50px 50px;
}

.home-marketing-expertize .heading h1 {
    font-family: Inter;
    margin-bottom: 40px;
    font-size: 50px;
    font-weight: 900;
    line-height: 58px;
    background: -webkit-linear-gradient(left, #367aa7 30%, #008c41 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.home-marketing-expertize .box-area img {
    max-width: 80px;
    margin-bottom: 30px;
}

.home-marketing-expertize .box-area h3 {
    font-family: Inter;
    font-size: 22px;
    font-weight: 700;
    margin: 10px 10px 30px 10px;
    color: #383838;
}

.home-marketing-expertize .box-area p {
    font-family: Inter;
    color: #383838;
    font-size: 16px;
    font-weight: 400;
    margin: 0 10px 10px 10px;
    padding: 0;
}

.home-marketing-expertize .bg1 {
    background-image: url(../images/homepage/bg-1.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 500px;
    border-radius: 50px;
    padding: 60px 50px;
    margin: 25px 0;
}

.home-marketing-expertize .bg2 {
    background-image: url(../images/homepage/bg-2.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 500px;
    border-radius: 50px;
    padding: 60px 50px;
    margin: 25px 0;
}

.home-marketing-expertize .bg3 {
    background-image: url(../images/homepage/bg-3.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 500px;
    border-radius: 50px;
    padding: 60px 50px;
    margin: 25px 0;
}

.home-marketing-expertize .bg4 {
    background-image: url(../images/homepage/bg-4.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 500px;
    border-radius: 50px;
    padding: 60px 50px;
    margin: 25px 0;
}

.home-marketing-expertize .bg5 {
    background-image: url(../images/homepage/bg-5.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 500px;
    border-radius: 50px;
    padding: 60px 50px;
    margin: 25px 0;
}

.home-marketing-expertize .bg6 {
    background-image: url(../images/homepage/bg-6.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 500px;
    border-radius: 50px;
    padding: 60px 50px;
    margin: 25px 0;
}

.home-marketing-expertize .bg7 {
    background-image: url(../images/homepage/bg-7.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 500px;
    border-radius: 50px;
    padding: 60px 50px;
    margin: 25px 0;
}

.home-marketing-expertize .bg8 {
    background-image: url(../images/homepage/bg-8.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 500px;
    border-radius: 50px;
    padding: 60px 50px;
    margin: 25px 0;
}

.home-marketing-expertize .bg9 {
    background-image: url(../images/homepage/bg-9.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 500px;
    border-radius: 50px;
    padding: 60px 50px;
    margin: 25px 0;
}

.home-marketing-expertize .box-area:hover {
    box-shadow: 0 0 10px rgba(175, 218, 191, 0.5);
}

.home-marketing-expertize .box-area.bg1:hover {
    box-shadow: 0 0 10px rgb(57 120 172);
}

.home-marketing-expertize .box-area.bg2:hover {
    box-shadow: 0 0 10px rgb(52 133 154);
}

.home-marketing-expertize .box-area.bg3:hover {
    box-shadow: 0 0 10px rgb(52 133 159);
}

.home-marketing-expertize .box-area.bg4:hover {
    box-shadow: 0 0 10px rgb(47 155 116);
}

.home-marketing-expertize .box-area.bg5:hover {
    box-shadow: 0 0 10px rgb(75 209 29);
}

.home-marketing-expertize .box-area.bg6:hover {
    box-shadow: 0 0 10px rgb(75 209 29);
}

.home-marketing-expertize .box-area.bg7:hover {
    box-shadow: 0 0 10px rgb(220 213 17);
}

.home-marketing-expertize .box-area.bg8:hover {
    box-shadow: 0 0 10px rgb(220 223 17);
}

.home-marketing-expertize .box-area.bg9:hover {
    box-shadow: 0 0 10px rgb(220 223 17);
}

.home-case-study .video-slider {
    border-radius: 20px;
    position: relative;
}

.home-case-study .content-area {
    position: absolute;
    bottom: 80px;
    left: 25px;
    color: #fff;
}

.home-case-study .text-area {
    padding: 2px 40px;
    margin-top: 50px;
}

.home-case-study .text-area h1 {
    font-family: Inter;
    margin-bottom: 25px;
    font-size: 50px;
    font-weight: 900;
    line-height: 50px;
    background: -webkit-linear-gradient(left, #367aa7 30%, #008c41 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.home-case-study .text-area p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #000;
    margin-bottom: 16px;
    font-family: Inter;
    padding-right: 70px;
}

.home-case-study .text-area .btn {
    background-color: #d00202;
    border: none;
    outline: 0;
    border-radius: 50px;
}

.landing-page-seo-banner .text-area .input-group {
    width: 65%;
    margin-left: 22%;
}

.landing-page-seo-banner .text-area .input-group input {
    border-bottom: 2px solid #d00202;
    border-left: 2px solid #d00202;
    border-radius: 0 !important;
    padding: 12px 20px;
}

.landing-page-seo-banner .text-area .input-group input:focus {
    box-shadow: none;
    outline: 0;
}

.landing-page-seo-banner .text-area .input-group .btn {
    width: 40%;
    background-color: #d00202;
    border: none;
    outline: 0;
    font-size: 14px;
    line-height: 26px;
    padding: 12px 20px;
}

.landing-page-seo-banner .text-area h3 {
    font-family: Inter;
    margin-bottom: 12px;
    font-size: 42px;
    font-weight: 900;
    line-height: 40px;
    background: -webkit-linear-gradient(left, #367aa7 30%, #008c41 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.seo-ppc-hero {
    background-color: #fff;
    width: 100%;
    height: 100vh;
}

.seo-ppc-hero .text-area {
    padding: 100px 0 20px 0;
}

.seo-ppc-hero .text-area h1 {
    font-family: Inter;
    margin-bottom: 12px;
    font-size: 42px;
    letter-spacing: -2px;
    font-weight: 900;
    line-height: 42px;
    background: -webkit-linear-gradient(left, #367aa7 30%, #008c41 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.seo-ppc-hero .text-area h6 {
    font-family: Inter;
    margin-bottom: 18px;
    font-size: 30px;
    letter-spacing: -2px;
    font-weight: 600;
    line-height: 30px;
    background: -webkit-linear-gradient(left, #367aa7 30%, #008c41 90%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.seo-ppc-hero .text-area p {
    font-size: 16px;
    color: #000;
    margin-bottom: 20px;
    font-family: Inter;
    font-weight: 500;
    padding-right: 50px !important;
    line-height: 25px;
}

.seo-ppc-hero .cta-bg1 {
    background-image: url(../images/seo-ppc/chat.png);
    background-repeat: no-repeat;
    background-size: contain;
    max-width: 100%;
    height: 70px;
}

.seo-ppc-hero .cta-bg2 {
    background-image: url(../images/seo-ppc/whatsapp-bg.png);
    background-repeat: no-repeat;
    background-size: contain;
    max-width: 100%;
    height: 70px;
}

.seo-ppc-hero .cta-text h6 {
    padding: 24px 12px;
    margin-left: 70px;
    color: #fff;
    font-family: Inter;
    font-weight: 600;
    line-height: 20px;
    font-size: 16px;
}

.seo-ppc-hero .text-area a {
    font-size: 15px;
    color: #ffc100;
    margin-bottom: 8px;
    font-family: Poppins;
    font-weight: 600;
    text-decoration: underline;
    text-transform: uppercase;
}

.seo-ppc-hero .text-area .btn {
    line-height: 0;
    padding: 22px 40px;
    border-radius: 4px;
    transition: 0.5s;
    color: #fff;
    background: #d00202;
    font-size: 18px;
    font-weight: 500;
    outline: 0;
    border: none;
    width: 200px;
    border-radius: 50px;
}

.seo-ppc-hero .seo-ppc-hero-form {
    background-color: #fff !important;
    padding: 20px 20px;
    width: 70%;
    margin: 0 auto;
    margin-top: 60px;
    border-radius: 0;
    box-shadow: 2px 2px 30px #888;
}

.seo-ppc-hero .seo-ppc-hero-form label {
    color: #000;
    font-size: 16px;
    font-weight: 500;
    padding: 1px 0;
    letter-spacing: -1px;
}

.seo-ppc-hero .seo-ppc-hero-form ::placeholder {
    color: #888;
    font-size: 13px;
    letter-spacing: -1px;
}

.seo-ppc-hero .seo-ppc-hero-form input {
    background-color: transparent;
    font-size: 12px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #888;
    border-radius: 0;
    color: #000;
    padding: 6px 0;
}

.seo-ppc-hero .seo-ppc-hero-form input:focus {
    background-color: transparent;
    font-size: 14px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    border-radius: 0;
}

.seo-ppc-hero .seo-ppc-hero-form .btn {
    background-color: #a80b0b;
    width: 100%;
    outline: 0;
    border: none;
    font-size: 16px;
    font-weight: 600;
    font-family: Inter;
    letter-spacing: -1px;
}

.seo-ppc-hero .heading h3 {
    color: #000;
    font-size: 32px;
    font-family: Inter;
    font-weight: 900;
    letter-spacing: -2px;
}

.seo-ppc-hero .heading h3 span {
    font-family: Inter;
    font-size: 32px;
    letter-spacing: -2px;
    font-weight: 900;
    line-height: 42px;
    background: -webkit-linear-gradient(left, #367aa7 30%, #008c41 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.seo-ppc-numbers .counter-box {
    border-left: 1px solid #ccc;
}

.seo-ppc-numbers .firstchild {
    border-left: none !important;
}

.seo-ppc-numbers .counter-box .numbers-img img {
    margin-right: 6px;
    object-fit: contain;
}

.seo-ppc-numbers .counter-box .numbers-img h3 {
    font-family: Inter, sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #000;
    padding-top: 12px;
    margin-left: 1px;
}

.seo-ppc-numbers .counter-box p {
    font-weight: 600;
    font-size: 14px;
    margin-top: 8px;
    color: #000 !important;
}

.seo-ppc-clients {
    padding: 100px 0;
}

.seo-ppc-clients .text-area {
    margin-bottom: 20px;
}

.seo-ppc-clients .text-area h3 {
    font-family: Inter, sans-serif;
    font-weight: 900;
    font-size: 56px;
    line-height: 60px;
    margin-bottom: 12px;
    background: -webkit-linear-gradient(left, #367aa7 30%, #049e52 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -3px;
}

.seo-ppc-clients .map-img img {
    max-width: 800px;
    position: relative;
}

.seo-ppc-clients .one {
    position: absolute;
    top: 100px;
    left: 220px;
    color: #5cc004;
}

.seo-ppc-clients .two {
    position: absolute;
    bottom: 280px;
    left: 400px;
    color: #5cc004;
}

.seo-ppc-clients .three {
    position: absolute;
    top: 200px;
    left: 500px;
    color: #5cc004;
}

.seo-ppc-clients .four {
    position: absolute;
    top: 220px;
    left: 250px;
    color: #5cc004;
}

.seo-ppc-clients .five {
    position: absolute;
    bottom: 200px;
    right: 650px;
    color: #5cc004;
}

.seo-ppc-clients .cta-bg1 {
    background-image: url(../images/seo-ppc/chat.png);
    background-repeat: no-repeat;
    background-size: contain;
    max-width: 100%;
    height: 70px;
}

.seo-ppc-clients .cta-bg2 {
    background-image: url(../images/seo-ppc/whatsapp-bg.png);
    background-repeat: no-repeat;
    background-size: contain;
    max-width: 100%;
    height: 70px;
}

.seo-ppc-clients .cta-text h6 {
    padding: 24px 12px;
    margin-left: 70px;
    color: #fff;
    font-family: Inter;
    font-weight: 600;
    line-height: 20px;
    font-size: 16px;
}

.why-choose-us {
    background-color: #fcfcfc;
}

.why-choose-us .heading {
    margin-bottom: 25px;
}

.why-choose-us .heading h2 {
    font-family: Inter, sans-serif;
    font-weight: 900;
    font-size: 56px;
    line-height: 60px;
    margin-bottom: 12px;
    background: -webkit-linear-gradient(left, #367aa7 30%, #049e52 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -3px;
}

.why-choose-us .heading h6 {
    font-family: Inter, sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 12px;
    color: #000;
    letter-spacing: -1px;
}

.why-choose-us .text-area {
    margin-top: 30px;
}

.why-choose-us .text-area h3 {
    font-family: Inter, sans-serif;
    font-weight: 900;
    font-size: 30px;
    line-height: 34px;
    margin-bottom: 25px;
    background: -webkit-linear-gradient(left, #367aa7 30%, #049e52 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

.why-choose-us .text-area p {
    font-family: Inter;
    font-weight: 500;
    font-size: 17px;
    color: #000;
    line-height: 25px;
    margin-bottom: 12px;
    padding-right: 60px;
}

.why-choose-us .text-area p span {
    font-family: Inter, sans-serif;
    font-weight: 900;
    font-size: 18px;
    background: -webkit-linear-gradient(left, #367aa7 30%, #049e52 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

.why-choose-us .points-heading {
    margin-top: 34px;
    margin-bottom: 40px;
}

.why-choose-us .points-heading h3 {
    font-family: Inter;
    font-weight: 900;
    font-size: 32px;
    line-height: 30px;
    margin-bottom: 12px;
    background: -webkit-linear-gradient(left, #367aa7 30%, #049e52 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

.why-choose-us .points .d-flex {
    margin-bottom: 18px;
}

.why-choose-us .points .d-flex img {
    margin-right: 10px;
}

.why-choose-us .points .d-flex h4 {
    font-family: Inter;
    font-weight: 700;
    font-size: 17px;
    color: #000;
}

.why-choose-us .cta-bg1 {
    background-image: url(../images/seo-ppc/grow.png);
    background-repeat: no-repeat;
    background-size: contain;
    max-width: 100%;
    height: 70px;
}

.why-choose-us .cta-bg2 {
    background-image: url(../images/seo-ppc/choose.png);
    background-repeat: no-repeat;
    background-size: contain;
    max-width: 100%;
    height: 70px;
}

.why-choose-us .cta-bg1 h6 {
    padding: 24px 12px;
    margin-left: 70px;
    color: #000;
    font-family: Inter;
    font-weight: 600;
    line-height: 20px;
    font-size: 16px;
}

.why-choose-us .cta-bg2 h6 {
    padding: 24px 12px;
    margin-left: 70px;
    color: #fff;
    font-family: Inter;
    font-weight: 600;
    line-height: 20px;
    font-size: 16px;
}

.seo-ppc-process .heading h2 {
    font-size: 40px;
    font-family: Inter;
    font-weight: 900;
    background: -webkit-linear-gradient(left, #326b92 30%, #049e52 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 32px;
    line-height: 46px;
    letter-spacing: -2px;
}

.seo-ppc-process .col-lg-4 {
    margin-bottom: 12px;
}

.seo-ppc-process .img-wrapper img {
    max-width: 60px;
    margin-bottom: 12px;
}

.seo-ppc-process h3 {
    font-size: 24px;
    font-family: Inter;
    font-weight: 700;
    margin: 12px 0;
    letter-spacing: -1px;
    line-height: 22px;
    color: #000;
}

.seo-ppc-process p {
    font-family: Inter;
    font-size: 15px;
    font-weight: 400;
    margin: 12px 0;
    padding-right: 12px !important;
    letter-spacing: 0;
    color: #000;
}

.seo-ppc-process a {
    font-size: 16px;
    font-weight: 400;
    margin: 12px 0;
    padding-right: 12px !important;
    text-decoration: none;
    color: #348e8c;
}

.seo-ppc-process .bg1 {
    background-image: url(../images/seo-ppc/1.png);
    background-repeat: no-repeat;
    background-position: center;
    width: 300px;
    height: 400px;
    border-radius: 0;
    padding: 20px 25px;
}

.seo-ppc-process .bg1:hover a,
.seo-ppc-process .bg1:hover h3,
.seo-ppc-process .bg1:hover p {
    color: #fff;
}

.seo-ppc-process .bg2:hover a,
.seo-ppc-process .bg2:hover h3,
.seo-ppc-process .bg2:hover p {
    color: #fff;
}

.seo-ppc-process .bg3:hover a,
.seo-ppc-process .bg3:hover h3,
.seo-ppc-process .bg3:hover p {
    color: #fff;
}

.seo-ppc-process .bg4:hover a,
.seo-ppc-process .bg4:hover h3,
.seo-ppc-process .bg4:hover p {
    color: #fff;
}

.seo-ppc-process .bg1:hover {
    background-image: url(../images/seo-ppc/hov1.png);
    color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.seo-ppc-process .bg2:hover {
    background-image: url(../images/seo-ppc/hov2.png);
    color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.seo-ppc-process .bg3:hover {
    background-image: url(../images/seo-ppc/hov3.png);
    color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.seo-ppc-process .bg4:hover {
    background-image: url(../images/seo-ppc/hov4.png);
    color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.seo-ppc-process .bg2 {
    background-image: url(../images/seo-ppc/2.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 300px;
    height: 400px;
    border-radius: 0;
    padding: 20px 25px;
}

.seo-ppc-process .bg3 {
    background-image: url(../images/seo-ppc/3.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 300px;
    height: 400px;
    border-radius: 0;
    padding: 20px 25px;
}

.seo-ppc-process .bg4 {
    background-image: url(../images/seo-ppc/4.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 300px;
    height: 400px;
    border-radius: 0;
    padding: 20px 25px;
}

.seo-ppc-process .bg4:hover,
.seo-ppc-process .bg4:hover a,
.seo-ppc-process .bg4:hover h3,
.seo-ppc-process .bg4:hover p {
    background-color: #34859a !important;
    background-image: unset;
    color: #fff;
}

.seo-ppc-process .bg5 {
    background-image: url(../images/seo-ppc/5.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 300px;
    height: 400px;
    border-radius: 0;
    padding: 20px 25px;
}

.seo-ppc-process .bg5:hover,
.seo-ppc-process .bg5:hover a,
.seo-ppc-process .bg5:hover h3,
.seo-ppc-process .bg5:hover p {
    background-color: #34859a !important;
    background-image: unset;
    color: #fff;
}

.seo-ppc-process .bg6 {
    background-image: url(../images/seo-ppc/6.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 300px;
    height: 400px;
    border-radius: 0;
    padding: 20px 25px;
}

.seo-ppc-process .bg6:hover,
.seo-ppc-process .bg6:hover a,
.seo-ppc-process .bg6:hover h3,
.seo-ppc-process .bg6:hover p {
    background-color: #34859a !important;
    background-image: unset;
    color: #fff;
}

.call-internet {
    background-image: url(../images/seo-ppc/banner-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 40vh;
    padding: 60px 0;
}

.call-internet .left-side h3 {
    color: #fff;
    font-family: Inter;
    font-weight: 700;
    font-size: 28px;
    letter-spacing: -1px;
    margin-bottom: 6px;
}

.call-internet .left-side p {
    color: #fff;
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 18px;
    margin-bottom: 18px;
}

.call-internet .d-flex img {
    margin-right: 16px;
}

.call-internet .d-flex h5 {
    margin-top: 6px;
    font-size: 32px;
    color: #fff;
    font-weight: 700;
    font-family: Inter;
}

.call-internet .right-side h2 {
    color: #fff;
    font-family: Inter;
    font-weight: 700;
    font-size: 32px;
    letter-spacing: -1px;
    margin-bottom: 1px;
}

.call-internet .right-side h3 {
    color: #fff;
    font-family: Inter;
    font-weight: 500;
    font-size: 30px;
    letter-spacing: -1px;
    margin-bottom: 1px;
}

.call-internet .right-side h4 {
    color: #fff;
    font-family: Inter;
    font-weight: 500;
    font-size: 30px;
    letter-spacing: -1px;
    margin-bottom: 1px;
}

.call-internet .right-side h3 span {
    color: #fbbc04;
    font-weight: 900;
    font-size: 32px;
}

.call-internet .right-side h4 span {
    color: #fbbc04;
    font-weight: 900;
    font-size: 32px;
}

.seo-ppc-faq {
    background: url(../images/atlana/faq.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100vh;
}

.seo-ppc-faq .section-title h2 {
    font-family: Inter, sans-serif;
    font-weight: 900;
    font-size: 40px;
    line-height: 45px;
    background: -webkit-linear-gradient(left, #367aa7 20%, #049e52 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-left: 80px;
    margin-bottom: 20px;
}

.seo-ppc-faq .faq-list {
    padding: 0 70px;
}

.seo-ppc-faq .faq-list ul {
    padding: 0;
    list-style: none;
}

.seo-ppc-faq .faq-list li+li {
    margin-top: 15px;
}

.seo-ppc-faq .faq-list li {
    padding: 20px 0;
    background-image: linear-gradient(to right, #5389b7, #29a770);
    position: relative;
    padding: 12px 32px;
    border-radius: 10px;
}

.seo-ppc-faq .faq-list a {
    display: block;
    position: relative;
    font-family: 'Inter', sans-serif !important;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    padding: 0;
    outline: 0;
    cursor: pointer;
    color: #fff;
}

.seo-ppc-faq .faq-list .icon-close,
.seo-ppc-faq .faq-list .icon-show {
    font-size: 24px;
    position: absolute;
    right: 0;
    top: 0;
    color: #fff;
}

.seo-ppc-faq .faq-list p {
    margin-bottom: 0;
    padding: 10px 0 0 0;
    font-size: 13px;
    color: #fff;
}

.seo-ppc-faq .faq-list .icon-show {
    display: none;
}

.seo-ppc-faq .faq-list a.collapsed {
    color: #fff;
}

.seo-ppc-faq .faq-list a.collapsed .icon-show {
    display: inline-block;
    font-size: 16px;
    margin-top: 4px;
}

.seo-ppc-faq .faq-list .fa-chevron-up:before {
    font-size: 16px;
    margin-top: 4px;
}

.seo-ppc-faq .faq-list a.collapsed .icon-close {
    display: none;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1300px !important;
    }
}

.social-media-ppc-hero {
    background-image: url(../images/social-media-lp-ppc/hero-bg.png);
    background-repeat: no-repeat;
    background-position: 1% 20%;
    background-size: cover;
    width: 100%;
    height: 110vh;
}

.social-media-ppc-hero .text-area {
    padding: 25px 0 20px 0;
}

.social-media-ppc-hero .text-area h1 {
    font-family: Inter;
    margin-bottom: 12px;
    font-size: 46px;
    letter-spacing: -3px;
    font-weight: 900;
    line-height: 50px;
    background: -webkit-linear-gradient(left, #da137c 30%, #f6ac35 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.social-media-ppc-hero .text-area p {
    font-size: 16px;
    color: #414141;
    margin-bottom: 20px;
    font-family: Inter;
    font-weight: 600;
    padding-right: 100px !important;
    line-height: 25px;
    letter-spacing: -1px;
}

.social-media-ppc-hero .text-area .btn-danger {
    background-image: linear-gradient(#351a4b, #723389);
    text-decoration: none;
    color: #fff;
    padding: 2px 40px;
    font-size: 14px;
    font-family: Inter;
    border-radius: 0;
    outline: 0;
    border: none;
    margin-bottom: 18px;
    box-shadow: none;
    width: 360px;
}

.social-media-ppc-hero .text-area .btn-danger.active,
.web-content-ppc-hero .text-area .btn-danger:active,
.web-content-ppc-hero .text-area .btn-danger:focus {
    background-image: linear-gradient(to right, #743bbc, #03a6cd);
    text-decoration: none;
    color: #fff;
    padding: 2px 40px;
    font-size: 14px;
    font-family: Inter;
    border-radius: 0;
    outline: 0;
    border: none;
    margin-bottom: 18px;
    box-shadow: none;
    width: 360px;
}

.social-media-ppc-hero .social-media-ppc-hero-form {
    background-color: #fff !important;
    padding: 20px 25px;
    width: 80%;
    margin: 0 auto;
    margin-left: 95px;
    margin-top: 10px;
    border-radius: 0;
    box-shadow: 2px 2px 30px #888;
}

.social-media-ppc-hero .social-media-ppc-hero-form label {
    color: #000;
    font-size: 16px;
    font-weight: 700;
    padding: 1px 0;
    letter-spacing: -1px;
}

.social-media-ppc-hero .social-media-ppc-hero-form ::placeholder {
    color: #888;
    font-size: 13px;
    letter-spacing: -1px;
}

.social-media-ppc-hero .social-media-ppc-hero-form input {
    background-color: transparent;
    font-size: 12px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #888;
    border-radius: 0;
    color: #000;
    padding: 6px 0;
}

.social-media-ppc-hero .social-media-ppc-hero-form input:focus {
    background-color: transparent;
    font-size: 14px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    border-radius: 0;
}

.social-media-ppc-hero .social-media-ppc-hero-form .btn {
    background-image: linear-gradient(#351a4b, #723389);
    width: 100%;
    outline: 0;
    border: none;
    font-size: 17px;
    font-weight: 600;
    font-family: Inter;
    letter-spacing: -1px;
    border-radius: 0;
    text-transform: uppercase;
    box-shadow: none;
}

.social-media-ppc-hero .social-media-ppc-hero-form .btn.active {
    background-image: linear-gradient(#351a4b, #723389);
    width: 100%;
    outline: 0;
    border: none;
    font-size: 17px;
    font-weight: 600;
    font-family: Inter;
    letter-spacing: -1px;
    border-radius: 0;
    text-transform: uppercase;
    box-shadow: none;
}

.social-media-ppc-hero .heading h3 {
    color: #000;
    font-size: 36px;
    font-family: Inter;
    font-weight: 900;
    letter-spacing: -2px;
}

.social-media-ppc-hero .heading h3 span {
    font-family: Inter;
    font-size: 32px;
    letter-spacing: -2px;
    font-weight: 900;
    line-height: 42px;
    background: -webkit-linear-gradient(left, #367aa7 30%, #008c41 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.social-media-ppc-numbers {
    margin-top: 30px;
}

.social-media-ppc-numbers .counter-box {
    border-left: 1px solid #888;
}

.social-media-ppc-numbers .firstchild {
    border-left: none !important;
    margin-left: 12px;
}

.social-media-ppc-numbers .counter-box .numbers-img img {
    margin-right: 4px;
    margin-bottom: 4px;
    object-fit: contain;
    max-width: 50px;
}

.social-media-ppc-numbers .firstchild .numbers-img img {
    margin-bottom: 14px !important;
}

.social-media-ppc-numbers .secondchild .numbers-img img {
    height: 44px;
    margin-bottom: 14px;
}

.social-media-ppc-numbers .counter-box .numbers-img h3 {
    font-family: Inter;
    font-size: 45px;
    font-weight: 800;
    color: #000;
    padding-top: 0;
    margin-left: 1px;
    margin-top: -1px;
}

.social-media-ppc-numbers .col-lg-4 {
    padding: 0 !important;
}

.social-media-ppc-numbers .secondchild p {
    margin-right: 18px !important;
    margin-top: 2px !important;
    font-size: 12px !important;
}

.social-media-ppc-numbers .thirdchild p {
    margin-right: 1px !important;
    margin-top: 5px !important;
    font-size: 12px !important;
}

.social-media-ppc-numbers .counter-box p {
    text-transform: uppercase;
    font-family: Inter;
    font-weight: 700;
    font-size: 11px;
    line-height: 12px;
    margin-top: 0;
    color: #000 !important;
    margin-right: 3px;
}

.social-partners .heading h2 {
    color: #262626;
    font-weight: 900;
    font-family: Inter;
    font-size: 50px;
    line-height: 50px;
    margin-bottom: 50px;
    letter-spacing: -3px;
}

.social-partners .img-wrapper {
    margin: 0 10px;
}

.social-partners .twitter {
    margin-top: 12px;
}

.social-partners .amazon {
    margin-top: 12px;
}

.social-ppc-clients .text-area {
    margin-bottom: 20px;
}

.social-ppc-clients .text-area h3 {
    font-family: Inter;
    font-weight: 900;
    font-size: 50px;
    line-height: 50px;
    margin-bottom: -18px;
    letter-spacing: -3px;
    color: #262626;
    margin-top: -50px;
}

.social-ppc-clients .text-area p {
    font-family: Inter;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 12px;
    letter-spacing: -1px;
    color: #515151;
}

.social-ppc-clients .map-img {
    height: 810px;
}

.social-ppc-clients .map-img img {
    max-width: 1200px;
    position: relative;
    margin-bottom: 32px;
}

.social-ppc-clients .btn-live-chat {
    background-image: linear-gradient(#351a4b, #723389);
    text-decoration: none;
    color: #fff;
    padding: 2px 40px;
    font-size: 14px;
    font-family: Inter;
    margin-right: 16px;
    border-radius: 0;
    outline: 0;
    border: none;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.social-ppc-clients .btn-call {
    background-color: #2b2b2b;
    text-decoration: none;
    color: #fff;
    padding: 2px 40px;
    font-size: 14px;
    font-family: Inter;
    margin-right: 16px;
    border-radius: 0;
    outline: 0;
    border: none;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.social-ppc-clients .one {
    position: absolute;
    top: 100px;
    left: 250px;
    color: #5cc004;
    font-size: 25px;
    color: #fff;
}

.social-ppc-clients .two {
    position: absolute;
    bottom: 280px;
    left: 400px;
    color: #5cc004;
    font-size: 25px;
    color: #fff;
}

.social-ppc-clients .three {
    position: absolute;
    top: 200px;
    left: 500px;
    color: #5cc004;
    font-size: 25px;
    color: #fff;
}

.social-ppc-clients .four {
    position: absolute;
    top: 220px;
    left: 250px;
    color: #5cc004;
    font-size: 25px;
    color: #fff;
}

.social-ppc-clients .five {
    position: absolute;
    bottom: 200px;
    right: 670px;
    color: #5cc004;
    font-size: 25px;
    color: #fff;
}

.social-ppc-clients .six {
    position: absolute;
    bottom: 200px;
    left: 800px;
    color: #5cc004;
    font-size: 25px;
    color: #fff;
}

.social-ppc-clients .seven {
    position: absolute;
    bottom: 500px;
    right: 820px;
    color: #5cc004;
    font-size: 25px;
    color: #fff;
}

.social-ppc-clients .eight {
    position: absolute;
    bottom: 500px;
    left: 1070px;
    color: #5cc004;
    font-size: 25px;
    color: #fff;
}

.social-ppc-clients .nine {
    position: absolute;
    bottom: 480px;
    left: 520px;
    color: #5cc004;
    font-size: 25px;
    color: #fff;
}

.social-ppc-clients .ten {
    position: absolute;
    bottom: 320px;
    left: 620px;
    color: #5cc004;
    font-size: 25px;
    color: #fff;
}

.social-ppc-clients .eleven {
    position: absolute;
    bottom: 310px;
    left: 320px;
    color: #5cc004;
    font-size: 25px;
    color: #fff;
}

.social-ppc-clients .twelve {
    position: absolute;
    bottom: 380px;
    left: 125px;
    color: #5cc004;
    font-size: 25px;
    color: #fff;
}

.social-ppc-clients .thirteen {
    position: absolute;
    bottom: 300px;
    left: 920px;
    color: #5cc004;
    font-size: 25px;
    color: #fff;
}

.social-ppc-clients .fourteen {
    position: absolute;
    bottom: 450px;
    left: 720px;
    color: #5cc004;
    font-size: 25px;
    color: #fff;
}

.social-ppc-clients .fifteen {
    position: absolute;
    bottom: 610px;
    left: 1140px;
    color: #5cc004;
    font-size: 25px;
    color: #fff;
}

.social-ppc-clients .cta-bg1 {
    background-image: url(../images/seo-ppc/chat.png);
    background-repeat: no-repeat;
    background-size: contain;
    max-width: 100%;
    height: 70px;
}

.social-ppc-clients .cta-bg2 {
    background-image: url(../images/seo-ppc/whatsapp-bg.png);
    background-repeat: no-repeat;
    background-size: contain;
    max-width: 100%;
    height: 70px;
}

.social-ppc-clients .cta-text h6 {
    padding: 24px 12px;
    margin-left: 70px;
    color: #fff;
    font-family: Inter;
    font-weight: 600;
    line-height: 20px;
    font-size: 16px;
}

.social-ppc-pricing .heading h2 {
    font-family: Inter;
    font-weight: 900;
    font-size: 50px;
    line-height: 60px;
    margin-bottom: 12px;
    letter-spacing: -3px;
    color: #262626;
}

.social-ppc-pricing .heading p {
    font-family: Inter;
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 32px;
    letter-spacing: -1px;
    color: #000;
}

.social-ppc-pricing .col-md-4 {
    margin: 0;
    padding: 0;
}

.social-ppc-pricing #myTabContent {
    position: relative;
    right: 0;
}

.social-ppc-pricing #myTabContent .table-1,
.social-ppc-pricing #myTabContent .table-2,
.social-ppc-pricing #myTabContent .table-3 {
    border: 1px solid #ccc;
    width: 370px;
    margin: 0 auto;
}

.social-ppc-pricing ul#myTab {
    width: 520px;
    margin: 0 auto !important;
    box-shadow: 2px 2px 20px rgb(0 0 0 / 70%);
    padding: 10px 27px;
    position: relative;
    bottom: -18px;
    z-index: 60;
    background-color: #fff;
    border-radius: 16px;
}

.social-ppc-pricing .nav-tabs .nav-link {
    background-color: #fff;
    border: none;
    outline: 0;
    font-size: 18px;
    font-weight: 900;
    color: #000;
    font-family: Inter;
}

.social-ppc-pricing .nav-tabs a span {
    color: #a80b0b;
    font-size: 16px;
    font-weight: 700;
}

.social-ppc-pricing .nav-tabs a.active span {
    color: #fff;
}

.social-ppc-pricing .nav-tabs .nav-link.active {
    background-color: #2b2b2b !important;
    color: #fff !important;
    border-radius: 12px !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    padding: 11px 20px;
}

.tab-pane .cont_1 {
    background-image: linear-gradient(#f78f1f, #f15623);
    padding: 50px 30px 30px 30px;
}

.tab-pane .cont_1 h4,
.tab-pane .cont_2 h4,
.tab-pane .cont_3 h4 {
    text-align: left;
    font-family: Inter;
    font-weight: 300;
    font-size: 24px;
    color: #fff;
}

.tab-pane .cont_1 h2,
.tab-pane .cont_2 h2,
.tab-pane .cont_3 h2 {
    font-size: 50px;
    font-weight: 700;
    font-family: Inter;
    margin-bottom: 4px;
    color: #fff;
}

.tab-pane .cont_1 h2 span,
.tab-pane .cont_2 h2 span,
.tab-pane .cont_3 h2 span {
    font-size: 20px;
    font-weight: 500;
    font-family: Inter;
}

.tab-pane .cont_1 p,
.tab-pane .cont_2 p,
.tab-pane .cont_3 p {
    font-size: 13px;
    line-height: 16px;
    font-weight: 400;
    font-family: Inter;
    color: #fff;
}

.tab-pane .cont_2 {
    background-image: linear-gradient(#b23e80, #692372);
    padding: 50px 30px 30px 30px;
}

.tab-pane .cont_2 h4 {
    text-align: left;
}

.tab-pane .cont_3 {
    background-image: linear-gradient(#ec155a, #b62749);
    padding: 50px 30px 30px 30px;
}

.tab-pane .cont_3 h4 {
    text-align: left;
}

.ser1 {
    padding: 10px 30px;
    overflow-y: scroll;
    height: 270px;
}

.ser1 .heading1 {
    font-size: 16px;
    color: #393c3e;
    text-decoration: none;
    font-weight: 800;
    font-family: Inter;
    border-bottom: 2px solid #f78f1f;
    padding: 2px 0;
    margin-bottom: 6px;
    width: 160px;
}

.ser1 .heading2 {
    font-size: 16px;
    color: #393c3e;
    text-decoration: none;
    font-weight: 800;
    font-family: Inter;
    border-bottom: 2px solid #f78f1f;
    padding: 2px 0;
    margin-bottom: 6px;
    width: 75%;
}

.ser1 .heading3 {
    font-size: 16px;
    color: #393c3e;
    text-decoration: none;
    font-weight: 800;
    font-family: Inter;
    border-bottom: 2px solid #f78f1f;
    padding: 2px 0;
    margin-bottom: 6px;
    width: 70%;
}

.ser1 .heading4 {
    font-size: 16px;
    color: #393c3e;
    text-decoration: none;
    font-weight: 800;
    font-family: Inter;
    border-bottom: 2px solid #f78f1f;
    padding: 2px 0;
    margin-bottom: 6px;
    width: 88%;
}

.ser1 p {
    font-family: Inter;
    font-size: 14px;
    font-weight: 400;
}

.ser1 h5 {
    font-family: Inter;
    font-size: 14px;
    font-weight: 400;
}

.ser1 p .fa {
    margin-right: 6px;
}

.ser1::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 50px;
    background-color: #ccc;
}

.ser1::-webkit-scrollbar {
    width: 4px;
    border-radius: 50px;
    margin-right: 12px;
    background-color: #f15623;
}

.ser1::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #f15623;
}

.ser2::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 50px;
    background-color: #ccc;
}

.ser2::-webkit-scrollbar {
    width: 4px;
    border-radius: 50px;
    margin-right: 12px;
    background-color: #722674;
}

.ser2::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #722674;
}

.ser3::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 50px;
    background-color: #ccc;
}

.ser3::-webkit-scrollbar {
    width: 4px;
    border-radius: 50px;
    margin-right: 12px;
    background-color: #cd1f50;
}

.ser3::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #cd1f50;
}

.ser2 {
    padding: 10px 30px;
    overflow-y: scroll;
    height: 270px;
    background-color: #f0f4f6;
}

.ser2 .heading1 {
    font-size: 16px;
    color: #393c3e;
    text-decoration: none;
    font-weight: 800;
    font-family: Inter;
    border-bottom: 2px solid #6d2573;
    padding: 2px 0;
    margin-bottom: 6px;
    width: 160px;
}

.ser2 .heading2 {
    font-size: 16px;
    color: #393c3e;
    text-decoration: none;
    font-weight: 800;
    font-family: Inter;
    border-bottom: 2px solid #6d2573;
    padding: 2px 0;
    margin-bottom: 6px;
    width: 75%;
}

.ser2 .heading3 {
    font-size: 16px;
    color: #393c3e;
    text-decoration: none;
    font-weight: 800;
    font-family: Inter;
    border-bottom: 2px solid #6d2573;
    padding: 2px 0;
    margin-bottom: 6px;
    width: 70%;
}

.ser2 .heading4 {
    font-size: 16px;
    color: #393c3e;
    text-decoration: none;
    font-weight: 800;
    font-family: Inter;
    border-bottom: 2px solid #6d2573;
    padding: 2px 0;
    margin-bottom: 6px;
    width: 88%;
}

.ser2 p {
    font-family: Inter;
    font-size: 14px;
    font-weight: 400;
}

.ser2 h5 {
    font-family: Inter;
    font-size: 14px;
    font-weight: 400;
}

.ser2 p .fa {
    margin-right: 6px;
}

.ser3 {
    padding: 10px 30px;
    overflow-y: scroll;
    height: 270px;
}

.ser3 .heading1 {
    font-size: 16px;
    color: #393c3e;
    text-decoration: none;
    font-weight: 800;
    font-family: Inter;
    border-bottom: 2px solid #ec155a;
    padding: 2px 0;
    margin-bottom: 6px;
    width: 160px;
}

.ser3 .heading2 {
    font-size: 16px;
    color: #393c3e;
    text-decoration: none;
    font-weight: 800;
    font-family: Inter;
    border-bottom: 2px solid #ec155a;
    padding: 2px 0;
    margin-bottom: 6px;
    width: 75%;
}

.ser3 .heading3 {
    font-size: 16px;
    color: #393c3e;
    text-decoration: none;
    font-weight: 800;
    font-family: Inter;
    border-bottom: 2px solid #ec155a;
    padding: 2px 0;
    margin-bottom: 6px;
    width: 70%;
}

.ser3 .heading4 {
    font-size: 16px;
    color: #393c3e;
    text-decoration: none;
    font-weight: 800;
    font-family: Inter;
    border-bottom: 2px solid #ec155a;
    padding: 2px 0;
    margin-bottom: 6px;
    width: 88%;
}

.ser3 p {
    font-family: Inter;
    font-size: 14px;
    font-weight: 400;
}

.ser3 h5 {
    font-family: Inter;
    font-size: 14px;
    font-weight: 400;
}

.ser3 p .fa {
    margin-right: 6px;
}

.order-now {
    padding: 10px 30px;
}

.btn-order {
    background-image: linear-gradient(#f78f1f, #f15623);
    border-radius: 0;
    border: none;
    outline: 0;
}

.btn-order:active,
.btn-order:focus,
.btn-order:hover {
    background-image: linear-gradient(#f78f1f, #f15623);
    color: #fff;
}

.order-now .btn {
    margin-bottom: 12px;
}

.order-now h5 {
    font-family: Inter;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 4px;
}

.order-now p {
    font-family: Inter;
    font-size: 15px;
    font-weight: 600;
}

.order-now a,
.order-now2 a,
.order-now3 a {
    color: #565656;
}

.order-now p .fa {
    color: #d00202;
    font-size: 18px;
    margin-right: 4px;
}

.order-now2 {
    padding: 10px 30px;
    background-color: #f0f4f6;
}

.btn-order_2 {
    background-image: linear-gradient(#b23e80, #692372);
    border-radius: 0;
    border: none;
    outline: 0;
}

.btn-order_2:hover {
    background-image: linear-gradient(#b23e80, #692372);
    color: #fff;
}

.order-now2 .btn {
    margin-bottom: 12px;
}

.order-now2 h5 {
    font-family: Inter;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 4px;
}

.order-now2 p {
    font-family: Inter;
    font-size: 15px;
    font-weight: 600;
}

.order-now2 p .fa {
    color: #d00202;
    font-size: 18px;
    margin-right: 4px;
}

.order-now3 {
    padding: 10px 30px;
}

.btn-order_3 {
    background-image: linear-gradient(#ec155a, #b62749);
    border-radius: 0;
    border: none;
    outline: 0;
}

.btn-order_3:hover {
    background-image: linear-gradient(#ec155a, #b62749);
    color: #fff;
}

.order-now3 .btn {
    margin-bottom: 12px;
}

.order-now3 h5 {
    font-family: Inter;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 4px;
}

.order-now3 p {
    font-family: Inter;
    font-size: 15px;
    font-weight: 600;
}

.order-now3 p .fa {
    color: #d00202;
    font-size: 18px;
    margin-right: 4px;
}

li.nav-item {
    margin: 0 12px;
}

.social-ppc-questions .heading {
    margin-bottom: 25px;
}

.social-ppc-questions .heading h2 {
    font-family: Inter;
    font-weight: 900;
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 6px;
    letter-spacing: -2px;
    color: #262626;
}

.social-ppc-questions .heading p {
    color: #000;
    font-weight: 600;
    font-family: Inter;
    font-size: 20px;
    letter-spacing: -1px;
    line-height: 22px;
    margin-bottom: 6px;
}

.social-ppc-questions .heading p span {
    color: #000;
    font-weight: 900;
    font-family: Inter;
    font-size: 22px;
    letter-spacing: -1px;
    line-height: 28px;
    text-transform: uppercase;
}

.social-ppc-questions .heading h6 {
    font-size: 25px;
    font-weight: 900;
    color: #f15d22;
    font-family: Inter;
    letter-spacing: -1px;
}

.social-ppc-questions .heading h5 {
    font-size: 18px;
    font-weight: 400;
    color: #000;
    font-family: Inter;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.social-ppc-questions .heading h5 span {
    font-size: 25px;
    font-weight: 900;
    color: #f15d22;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.social-ppc-questions .heading h3 {
    letter-spacing: -1px;
    font-size: 22px;
    font-weight: 900;
    color: #000;
    text-decoration: underline;
    font-family: Inter;
    margin-bottom: 12px;
}

.social-ppc-questions .heading h4 {
    letter-spacing: -1px;
    font-size: 32px;
    font-weight: 900;
    color: #262626;
    font-family: Inter;
}

.social-ppc-questions .questions {
    margin-bottom: 50px;
}

.social-ppc-questions .questions .img1 {
    margin: -18px;
    padding: 0;
}

.social-ppc-questions .questions .img1:hover {
    transform: scale(1.02);
    transition: all 0.5s ease;
}

.social-ppc-questions .questions .img2 {
    margin: 4px;
    padding: 0;
}

.social-ppc-questions .questions .img2:hover {
    transform: scale(1.02);
    transition: all 0.5s ease;
}

.social-ppc-questions .questions .img3 {
    margin: -10px;
    padding: 0;
    position: relative;
    top: 60px;
    right: -47px;
}

.social-ppc-questions .questions .img3:hover {
    transform: scale(1.02);
    transition: all 0.5s ease;
}

.social-ppc-questions .questions .img4 {
    margin: -14px;
    padding: 0;
}

.social-ppc-questions .questions .img4:hover {
    transform: scale(1.04);
    transition: all 0.5s ease;
}

.social-ppc-questions .questions .img5 {
    margin: -8px;
    padding: 0;
    position: relative;
    top: -70px;
    z-index: -5;
}

.social-ppc-questions .questions .img5:hover {
    transform: scale(1.02);
    transition: all 0.5s ease;
}

.social-ppc-questions .heading2 h5 {
    line-height: 30px;
    font-size: 23px;
    font-weight: 700;
    color: #000;
    font-family: Inter;
    margin-bottom: 2px;
    letter-spacing: -1px;
}

.social-ppc-questions .heading2 p {
    font-size: 18px;
    font-weight: 600;
    color: #414141;
    font-family: Inter;
    margin-bottom: 0;
    letter-spacing: -1px;
    color: #000;
}

.social-ppc-questions .heading2 p span {
    font-size: 18px;
    font-weight: 900;
    color: #f15d22;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.social-ppc-questions .heading2 h5 span {
    font-size: 22px;
    font-weight: 900;
    color: #f15d22;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.headings3 {
    margin: 50px 0;
    background-image: linear-gradient(#55286c, #76358d);
}

.headings3 h3 {
    font-size: 40px;
    font-family: Inter;
    font-weight: 900;
    color: #fff;
    letter-spacing: -1px;
    line-height: 50px;
    margin-bottom: 40px;
}

.headings3 h3 span {
    color: #f6891f;
}

.btn-grow {
    background-image: linear-gradient(to right, #f78f1f, #f15623);
    text-decoration: none;
    color: #fff;
    width: 350px;
    padding: 2px 40px;
    font-size: 14px;
    font-family: Inter;
    margin-right: 16px;
    border-radius: 0;
    outline: 0;
    border: none;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.btn-grow:focus,
.btn-grow:hover {
    background-image: linear-gradient(to right, #f78f1f, #f15623);
    text-decoration: none;
    color: #fff;
}

.btn-folks {
    background-color: #fff;
    text-decoration: none;
    color: #000;
    font-size: 14px;
    font-weight: 700;
    font-family: Inter;
    border-radius: 0;
    outline: 0;
    border: none;
    margin-bottom: 18px;
    padding: 2px 2px;
    width: 350px;
    text-transform: uppercase;
}

.social-choose-us .heading h3 {
    font-family: Inter;
    font-weight: 900;
    font-size: 42px;
    letter-spacing: -2px;
    line-height: 45px;
    color: #262626;
    margin-bottom: 18px;
}

.social-choose-us .heading p {
    font-family: Inter;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    color: #000;
    padding-right: 20px;
    letter-spacing: -1px;
}

.social-choose-us .img-wrapper img {
    max-width: 420px;
    margin-top: -20px;
}

.social-choose-us .text-area {
    margin-top: 30px;
}

.social-choose-us .text-area h3 {
    font-size: 38px;
    font-family: Inter;
    font-weight: 900;
    background: -webkit-linear-gradient(left, #76358d 30%, #e31a6e 40%, #f18f39);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
    line-height: 44px;
    margin-bottom: 0;
}

.social-media-ads .heading h3 {
    font-size: 40px;
    font-family: Inter;
    font-weight: 900;
    letter-spacing: -3px;
    line-height: 44px;
    margin-bottom: 12px;
    color: #262626;
    letter-spacing: -1px;
}

.social-media-ads .heading p {
    font-size: 18px;
    font-family: Inter;
    font-weight: 600;
    letter-spacing: -1px;
    line-height: 20px;
    margin-bottom: 32px;
    color: #262626;
    letter-spacing: -1px;
    margin-bottom: 60px;
}

.social-media-ads .facebook {
    background-image: linear-gradient(#f78f1f, #f15623);
    padding: 65px 20px;
}

.social-media-ads .facebook h4 {
    font-family: Inter;
    text-align: left !important;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0;
}

.social-media-ads .facebook p {
    font-family: Inter;
    text-align: left !important;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 25px;
    line-height: 20px;
}

.social-media-ads .facebook .btn-danger {
    background-color: transparent;
    border: 2px solid #fff;
    padding: 1px 16px;
    border-radius: 0;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
}

.social-media-ads .youtube {
    background-image: linear-gradient(#ec155a, #b62749);
    padding: 65px 20px;
}

.social-media-ads .youtube h4 {
    font-family: Inter;
    text-align: left !important;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0;
}

.social-media-ads .youtube p {
    font-family: Inter;
    text-align: left !important;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 25px;
    line-height: 20px;
}

.social-media-ads .youtube .btn-danger {
    background-color: transparent;
    border: 2px solid #fff;
    padding: 1px 16px;
    border-radius: 0;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
}

.social-media-ads .instagram {
    background-image: linear-gradient(#b23e80, #692372);
    padding: 65px 20px;
}

.social-media-ads .instagram h4 {
    font-family: Inter;
    text-align: left !important;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0;
}

.social-media-ads .instagram p {
    font-family: Inter;
    text-align: left !important;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 25px;
    line-height: 20px;
}

.social-media-ads .instagram .btn-danger {
    background-color: transparent;
    border: 2px solid #fff;
    padding: 1px 12px;
    border-radius: 0;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
}

.social-media-ads .twitter {
    background-image: linear-gradient(#00a9ce, #057a94);
    padding: 65px 20px;
}

.social-media-ads .twitter h4 {
    font-family: Inter;
    text-align: left !important;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0;
}

.social-media-ads .twitter p {
    font-family: Inter;
    text-align: left !important;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 25px;
    line-height: 20px;
}

.social-media-ads .twitter .btn-danger {
    background-color: transparent;
    border: 2px solid #fff;
    padding: 1px 16px;
    border-radius: 0;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
}

.social-media-ads {
    background-image: url(../images/social-media-lp-ppc/hero-bg.png);
    background-repeat: no-repeat;
    background-position: 30% 74%;
    background-size: contain;
    width: 100%;
    height: 200vh;
}

.min-strategy .text-area {
    padding: 140px 0 20px 0;
}

.min-strategy .text-area h1 {
    font-size: 40px;
    font-family: Inter;
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 50px;
    margin-bottom: 25px;
    color: #262626;
}

.min-strategy .text-area h1 span {
    font-size: 36px;
    font-family: Inter;
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 46px;
    margin-bottom: 25px;
    color: #f15d22;
    letter-spacing: -1px;
}

.min-strategy .text-area .btn-live-chat {
    background-image: linear-gradient(#351a4b, #723389);
    text-decoration: none;
    color: #fff;
    padding: 1px 32px;
    font-size: 15px;
    font-family: Inter;
    margin-right: 16px;
    border-radius: 0;
    outline: 0;
    border: none;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.min-strategy .min-strategy-form {
    background-color: #fff !important;
    padding: 20px 25px;
    width: 85%;
    margin: 0 auto;
    margin-top: 75px;
    border-radius: 0;
    box-shadow: 2px 2px 30px #888;
}

.min-strategy .min-strategy-form label {
    color: #000;
    font-size: 16px;
    font-weight: 700;
    padding: 0 0;
    letter-spacing: -1px;
}

.min-strategy .min-strategy-form ::placeholder {
    color: #888;
    font-size: 13px;
    letter-spacing: -1px;
}

.min-strategy .min-strategy-form input {
    background-color: transparent;
    font-size: 12px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #888;
    border-radius: 0;
    color: #000;
    padding: 1px 0;
}

.min-strategy .min-strategy-form input:focus {
    background-color: transparent;
    font-size: 14px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    border-radius: 0;
}

.min-strategy .min-strategy-form .btn {
    background-image: linear-gradient(#351a4b, #723389);
    width: 100%;
    outline: 0;
    border: none;
    font-size: 17px;
    font-weight: 600;
    font-family: Inter;
    letter-spacing: -1px;
    border-radius: 0;
    outline: 0;
    border: none;
}

.min-strategy .heading h3 {
    color: #000;
    font-size: 32px;
    font-family: Inter;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 0;
}

.social-ppc-faq .section-title h2 {
    font-family: Inter, sans-serif;
    font-weight: 900;
    font-size: 40px;
    line-height: 45px;
    color: #262626;
    margin-bottom: 50px;
    letter-spacing: -2px;
}

.social-ppc-faq .faq-list {
    padding: 0 70px;
}

.social-ppc-faq .faq-list ul {
    padding: 0;
    list-style: none;
}

.social-ppc-faq .faq-list li+li {
    margin-top: 15px;
}

.social-ppc-faq .faq-list li {
    padding: 20px 0;
    background-color: #2b2b2b;
    position: relative;
    padding: 12px 32px;
    border-radius: 10px;
    width: 800px;
    margin: 0 auto;
}

.social-ppc-faq .faq-list a {
    display: block;
    position: relative;
    font-family: 'Inter', sans-serif !important;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    padding: 0;
    outline: 0;
    cursor: pointer;
    color: #fff;
}

.social-ppc-faq .faq-list a:hover {
    display: block;
    position: relative;
    font-family: 'Inter', sans-serif !important;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    padding: 0;
    outline: 0;
    cursor: pointer;
    color: #fff;
}

.social-ppc-faq .faq-list .icon-close,
.social-ppc-faq .faq-list .icon-show {
    font-size: 24px;
    position: absolute;
    right: 0;
    top: 0;
    color: #fff;
}

.social-ppc-faq .faq-list p {
    margin-bottom: 0;
    padding: 10px 0 0 0;
    font-size: 13px;
    color: #fff;
}

.social-ppc-faq .faq-list .icon-show {
    display: none;
}

.social-ppc-faq .faq-list a.collapsed {
    color: #fff;
}

.social-ppc-faq .faq-list a.collapsed .icon-show {
    display: inline-block;
    font-size: 16px;
    margin-top: 4px;
}

.social-ppc-faq .faq-list .fa-chevron-up:before {
    font-size: 16px;
    margin-top: 4px;
}

.social-ppc-faq .faq-list a.collapsed .icon-close {
    display: none;
}

.default-content-container {
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 4rem;
    padding-right: 4rem !important;
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
    width: 100%;
    min-height: 100vh;
}

.logoMarqueeSection>div>div {
    padding-top: 0;
    padding-bottom: 0;
    min-height: 0;
}

.marquee-wrapper {
    white-space: nowrap;
}

.marquee {
    display: inline-block;
    white-space: nowrap;
    position: relative;
    transform: translate3d(0, 0, 0);
    animation-name: marquee;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.marquee a {
    display: inline-block;
    white-space: nowrap;
    padding-right: 5.4rem;
}

.marquee-wrapper:hover .marquee {
    animation-play-state: paused !important;
}

@keyframes marquee {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-100%, 0, 0);
    }
}

.card {
    margin: 10px;
    display: inline-block;
    position: relative;
    width: 300px;
    height: 320px;
    opacity: 1;
}

.back,
.front {
    width: 100%;
    height: 100%;
    position: absolute;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
    border-radius: 0;
}

.front-facebook {
    transform: rotateY(0);
    background-image: url(../images/social-media-lp-ppc/fb-bg.png);
    background-size: cover;
    background-position: bottom;
    text-align: center;
    padding: 30px;
}

.back-facebook {
    background: -webkit-linear-gradient(top left, #f15523, #f78f1f);
    background: linear-gradient(to bottom right, #f15523, #f78f1f);
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    padding: 40px 15px;
    color: #fff;
}

.card:hover .front-facebook {
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
}

.card:hover .back-facebook {
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
}

.front-youtube {
    transform: rotateY(0);
    background-image: url(../images/social-media-lp-ppc/yt-bg.png);
    background-size: cover;
    background-position: bottom;
    text-align: center;
    padding: 30px;
}

.back-youtube {
    background: -webkit-linear-gradient(top left, #b52848, #ec155a);
    background: linear-gradient(to bottom right, #b52848, #ec155a);
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    padding: 40px 15px;
    color: #fff;
}

.card:hover .front-youtube {
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
}

.card:hover .back-youtube {
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
}

.front-instagram {
    transform: rotateY(0);
    background-image: url(../images/social-media-lp-ppc/insta-bg.png);
    background-size: cover;
    background-position: bottom;
    text-align: center;
    padding: 30px;
}

.back-instagram {
    background: -webkit-linear-gradient(top left, #6a2472, #b23e80);
    background: linear-gradient(to bottom right, #6a2472, #b23e80);
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    padding: 40px 15px;
    color: #fff;
}

.card:hover .front-instagram {
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
}

.card:hover .back-instagram {
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
}

.front-twitter {
    transform: rotateY(0);
    background-image: url(../images/social-media-lp-ppc/twiitter-bg.png);
    background-size: cover;
    background-position: bottom;
    text-align: center;
    padding: 30px;
}

.back-twitter {
    background: -webkit-linear-gradient(top left, #057b94, #00a9ce);
    background: linear-gradient(to bottom right, #057b94, #00a9ce);
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    padding: 40px 15px;
    color: #fff;
}

.card:hover .front-twitter {
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
}

.card:hover .back-twitter {
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
}

.social-media-ads .front {
    padding: 70px 30px;
}

.social-media-ads .front h4 {
    font-family: Inter;
    text-align: left !important;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0;
}

.social-media-ads .front p {
    font-family: Inter;
    text-align: left !important;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 25px;
    line-height: 20px;
}

.social-media-ads .back {
    padding: 120px 30px;
}

.social-media-ads .back .btn-danger {
    background-color: transparent;
    border: 2px solid #fff;
    padding: 1px 16px;
    border-radius: 0;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
    width: 100%;
}

@media screen and (max-width: 768px) {
    .social-ppc-clients .map-img.aos-init.aos-animate {
        height: 290px;
    }

    .social-ppc-clients .map-img img {
        max-width: 400px;
    }

    .social-ppc-pricing ul#myTab {
        width: 400px;
        margin: 0 auto !important;
        box-shadow: 2px 2px 20px rgb(0 0 0 / 70%);
        padding: 10px 10px;
        position: relative;
        bottom: -18px;
        z-index: 60;
        background-color: #fff;
        border-radius: 16px;
    }

    .social-media-ppc-numbers .firstchild .d-flex img {
        margin-left: 80px !important;
    }

    .social-media-ppc-hero {
        height: auto;
    }

    .social-media-ppc-hero .text-area {
        margin-top: 75px;
    }

    .social-media-ppc-hero .text-area h1 {
        font-size: 28px;
        line-height: 30px;
    }

    .social-media-ppc-hero .text-area h1 br {
        display: none;
    }

    .social-media-ppc-hero .text-area p {
        padding: 0 !important;
    }

    .social-media-ppc-hero .social-media-ppc-hero-form {
        margin-left: 40px;
    }

    .social-ppc-clients .text-area h3 {
        margin-top: 0;
        font-size: 40px;
    }

    .social-ppc-pricing .heading h2 {
        font-size: 36px;
        line-height: 30px;
    }

    .social-ppc-faq .section-title h2 {
        margin-top: 0;
        font-size: 30px;
        line-height: 30px;
    }

    .social-ppc-pricing .heading h2 br {
        display: none;
    }

    .social-media-ads {
        height: auto;
    }

    .social-ppc-questions .heading3 h3 {
        font-size: 28px;
        font-weight: 900;
        line-height: 32px;
    }

    .social-choose-us .text-area h3 {
        font-size: 28px;
        font-weight: 900;
        line-height: 32px;
    }

    .social-choose-us .text-area h3 br {
        display: none;
    }

    .social-ppc-faq .faq-list li {
        width: 330px !important;
        margin-left: -50px;
    }

    .min-strategy .text-area h1 {
        font-size: 30px;
        line-height: 32px;
    }

    .social-media-ads .heading h3 {
        font-size: 28px;
        line-height: 32px;
    }

    .social-media-ads .heading h3 br {
        display: none;
    }

    .min-strategy .text-area h1 span {
        font-size: 30px;
        line-height: 26px;
    }

    .min-strategy .text-area h1 br {
        display: none;
    }

    .min-strategy .text-area .btn-live-chat {
        width: 330px;
        font-size: 12px;
    }

    .social-choose-us .img-wrapper img {
        max-width: 350px;
    }

    .social-ppc-pricing nav {
        display: block !important;
    }

    .social-ppc-pricing ul#myTab {
        width: 200px;
    }

    .social-ppc-pricing li.nav-item {
        margin: 0 auto;
    }

    .social-ppc-pricing .tab-pane .d-flex {
        display: block !important;
    }

    .social-ppc-pricing .tab-pane .d-flex .table-1 {
        margin-bottom: 120px;
    }

    .social-ppc-pricing #myTabContent .table-1,
    .social-ppc-pricing #myTabContent .table-2,
    .social-ppc-pricing #myTabContent .table-3 {
        width: 312px;
        margin-bottom: 24px;
    }

    .social-tabs .ser1 p,
    .social-tabs .ser2 p,
    .social-tabs .ser3 p {
        text-align: left !important;
    }

    .social-ppc-questions .questions .img1 {
        width: 300px;
        margin: 12px 0;
    }

    .social-ppc-questions .questions .img2 {
        width: 300px;
        margin: 12px 0;
    }

    .social-ppc-questions .questions .img3 {
        width: 300px;
        margin: 12px 0;
    }

    .social-ppc-questions .questions .img4 {
        width: 300px;
        margin: 12px 0;
    }

    .social-ppc-questions .questions .img5 {
        width: 300px;
        margin: 12px 0;
    }
}

.seo-updated-ppc-hero {
    background-image: url(../images/social-media-lp-ppc/hero-bg.png);
    background-repeat: no-repeat;
    background-position: 1% 100%;
    background-size: cover;
    width: 100%;
    height: 110vh;
}

.seo-updated-ppc-hero .text-area {
    padding: 25px 0 20px 0;
}

.seo-updated-ppc-hero .text-area h1 {
    font-family: Inter;
    margin-bottom: 12px;
    font-size: 37px;
    letter-spacing: -2px;
    font-weight: 900;
    line-height: 40px;
    background: -webkit-linear-gradient(left, #3978ac 30%, #00a14b 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.seo-updated-ppc-hero .text-area p {
    font-size: 16px;
    color: #414141;
    margin-bottom: 20px;
    font-family: Inter;
    font-weight: 600;
    padding-right: 90px !important;
    line-height: 25px;
    letter-spacing: -1px;
}

.seo-updated-ppc-hero .text-area .btn-live-chat {
    background-image: linear-gradient(#069647, #05532b);
    text-decoration: none;
    color: #fff;
    padding: 1px 32px;
    font-size: 14px;
    font-family: Inter;
    margin-right: 16px;
    border-radius: 0;
    outline: 0;
    border: none;
    margin-bottom: 18px;
}

.seo-updated-ppc-hero .text-area .btn-get-quote {
    background-color: #2b2b2b;
    text-decoration: none;
    color: #fff;
    padding: 1px 28px;
    font-size: 14px;
    font-family: Inter;
    border-radius: 0;
    outline: 0;
    border: none;
    margin-bottom: 18px;
}

.seo-updated-ppc-hero .seo-updated-ppc-hero-form {
    background-color: #fff !important;
    padding: 20px 25px;
    width: 80%;
    margin: 0 auto;
    margin-left: 95px;
    margin-top: 10px;
    border-radius: 0;
    box-shadow: 2px 2px 30px #888;
}

.seo-updated-ppc-hero .seo-updated-ppc-hero-form label {
    color: #000;
    font-size: 16px;
    font-weight: 700;
    padding: 1px 0;
    letter-spacing: -1px;
}

.seo-updated-ppc-hero .seo-updated-ppc-hero-form ::placeholder {
    color: #888;
    font-size: 13px;
    letter-spacing: -1px;
}

.seo-updated-ppc-hero .seo-updated-ppc-hero-form input {
    background-color: transparent;
    font-size: 12px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #888;
    border-radius: 0;
    color: #000;
    padding: 6px 0;
}

.seo-updated-ppc-hero .seo-updated-ppc-hero-form input:focus {
    background-color: transparent;
    font-size: 14px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    border-radius: 0;
}

.seo-updated-ppc-hero .seo-updated-ppc-hero-form .btn {
    background-image: linear-gradient(#069647, #05532b);
    width: 100%;
    outline: 0;
    border: none;
    font-size: 17px;
    font-weight: 600;
    font-family: Inter;
    letter-spacing: -1px;
    border-radius: 0;
    outline: 0;
    border: none;
}

.seo-updated-ppc-hero .heading h3 {
    color: #000;
    font-size: 30px;
    font-family: Inter;
    font-weight: 900;
    letter-spacing: -2px;
}

.seo-updated-ppc-hero .heading h3 span {
    font-family: Inter;
    font-size: 32px;
    letter-spacing: -2px;
    font-weight: 900;
    line-height: 42px;
    color: #099b5a;
}

.seo-updated-ppc-questions .heading h2 {
    font-family: Inter;
    margin-bottom: 12px;
    font-size: 46px;
    letter-spacing: -2px;
    font-weight: 900;
    line-height: 50px;
    background: -webkit-linear-gradient(left, #3978ac 30%, #00a14b 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.seo-updated-ppc-questions .heading p {
    color: #000;
    font-weight: 600;
    font-family: Inter;
    font-size: 18px;
    letter-spacing: -1px;
    line-height: 22px;
    margin-bottom: 6px;
}

.seo-updated-ppc-questions .heading h6 {
    font-size: 24px;
    font-weight: 900;
    color: #000;
    font-family: Inter;
    letter-spacing: -1px;
    margin-bottom: 6px;
}

.seo-updated-ppc-questions .heading h5 {
    font-size: 18px;
    font-weight: 400;
    color: #000;
    font-family: Inter;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.seo-updated-ppc-questions .heading h5 span {
    font-size: 24px;
    font-weight: 900;
    color: #000;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.seo-updated-ppc-questions .heading h3 {
    letter-spacing: -1px;
    font-size: 22px;
    font-weight: 900;
    color: #000;
    text-decoration: underline;
    font-family: Inter;
    margin-bottom: 12px;
}

.seo-updated-ppc-questions .heading h4 {
    letter-spacing: -1px;
    font-size: 32px;
    font-weight: 900;
    color: #262626;
    font-family: Inter;
}

.seo-updated-ppc-questions .questions {
    margin-bottom: 50px;
}

.seo-updated-ppc-questions .questions .img1 {
    max-width: 310px;
}

.seo-updated-ppc-questions .questions .img1:hover {
    transform: scale(1.02);
    transition: all 0.5s ease;
}

.seo-updated-ppc-questions .questions .img2 {
    max-width: 310px;
    position: relative;
    top: 22px;
    right: 10px;
}

.seo-updated-ppc-questions .questions .img2:hover {
    transform: scale(1.02);
    transition: all 0.5s ease;
}

.seo-updated-ppc-questions .questions .img3 {
    max-width: 310px;
    position: relative;
    top: 7px;
    right: 28px;
}

.seo-updated-ppc-questions .questions .img3:hover {
    transform: scale(1.02);
    transition: all 0.5s ease;
}

.seo-updated-ppc-questions .questions .img4 {
    max-width: 310px;
    position: relative;
    top: -12px;
    right: 50px;
}

.seo-updated-ppc-questions .questions .img4:hover {
    transform: scale(1.04);
    transition: all 0.5s ease;
}

.seo-updated-ppc-questions .questions .img5 {
    max-width: 310px;
    position: relative;
    bottom: 22px;
    right: -10px;
}

.seo-updated-ppc-questions .questions .img5:hover {
    transform: scale(1.02);
    transition: all 0.5s ease;
}

.seo-updated-ppc-questions .questions .img6 {
    max-width: 310px;
    padding: 0;
    position: relative;
    top: -46px;
}

.seo-updated-ppc-questions .questions .img6:hover {
    transform: scale(1.02);
    transition: all 0.5s ease;
}

.seo-updated-ppc-questions .questions .img7 {
    max-width: 310px;
    padding: 0;
    position: relative;
    top: -46px;
}

.seo-updated-ppc-questions .questions .img7:hover {
    transform: scale(1.02);
    transition: all 0.5s ease;
}

.seo-updated-ppc-questions .heading2 h5 {
    line-height: 28px;
    font-size: 22px;
    font-weight: 600;
    color: #000;
    font-family: Inter;
    margin-bottom: 6px;
    letter-spacing: -1px;
}

.seo-updated-ppc-questions .heading2 h5 span {
    font-size: 26px;
    font-weight: 800;
    color: #000;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.seo-updated-ppc-questions .heading2 h3 {
    font-size: 40px;
    font-weight: 700;
    color: #0c9f4f;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 30px;
    margin-top: 12px;
}

.seo-updated-ppc-questions .heading2 .btn {
    font-size: 18px;
    background-color: #2b2b2b;
    color: #fff;
    outline: 0;
    border: none;
    text-transform: uppercase;
    font-family: Inter;
    box-shadow: none;
}

.seo-updated-ppc-clients .text-area {
    margin-bottom: 20px;
}

.seo-updated-ppc-clients .text-area h3 {
    font-family: Inter;
    margin-bottom: -10px;
    font-size: 50px;
    letter-spacing: -2px;
    font-weight: 900;
    line-height: 50px;
    background: -webkit-linear-gradient(left, #3978ac 30%, #00a14b 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.seo-updated-ppc-clients .text-area p {
    font-family: Inter;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 12px;
    letter-spacing: -1px;
    color: #515151;
}

.seo-updated-ppc-clients .map-img img {
    max-width: 1200px;
    position: relative;
    margin-bottom: 32px;
}

.seo-updated-ppc-clients .btn-live-chat {
    background-image: linear-gradient(to right, #069647, #05522b);
    text-decoration: none;
    color: #fff;
    padding: 2px 40px;
    font-size: 14px;
    font-family: Inter;
    margin-right: 16px;
    border-radius: 0;
    outline: 0;
    border: none;
    margin-bottom: 18px;
    text-transform: uppercase;
    width: 200px;
    box-shadow: none;
}

.seo-updated-ppc-clients .btn-call {
    background-color: #2b2b2b;
    text-decoration: none;
    color: #fff;
    padding: 2px 40px;
    font-size: 14px;
    font-family: Inter;
    margin-right: 16px;
    border-radius: 0;
    outline: 0;
    border: none;
    margin-bottom: 18px;
    text-transform: uppercase;
    box-shadow: none;
}

.seo-updated-ppc-clients .one {
    position: absolute;
    top: 100px;
    left: 250px;
    color: #5cc004;
    font-size: 25px;
    color: #fff;
}

.seo-updated-ppc-clients .two {
    position: absolute;
    bottom: 280px;
    left: 400px;
    color: #5cc004;
    font-size: 25px;
    color: #fff;
}

.seo-updated-ppc-clients .three {
    position: absolute;
    top: 200px;
    left: 500px;
    color: #5cc004;
    font-size: 25px;
    color: #fff;
}

.seo-updated-ppc-clients .four {
    position: absolute;
    top: 220px;
    left: 250px;
    color: #5cc004;
    font-size: 25px;
    color: #fff;
}

.seo-updated-ppc-clients .five {
    position: absolute;
    bottom: 200px;
    right: 670px;
    color: #5cc004;
    font-size: 25px;
    color: #fff;
}

.seo-updated-ppc-clients .six {
    position: absolute;
    bottom: 200px;
    left: 800px;
    color: #5cc004;
    font-size: 25px;
    color: #fff;
}

.seo-updated-ppc-clients .seven {
    position: absolute;
    bottom: 500px;
    right: 820px;
    color: #5cc004;
    font-size: 25px;
    color: #fff;
}

.seo-updated-ppc-clients .eight {
    position: absolute;
    bottom: 500px;
    left: 1070px;
    color: #5cc004;
    font-size: 25px;
    color: #fff;
}

.seo-updated-ppc-clients .nine {
    position: absolute;
    bottom: 480px;
    left: 520px;
    color: #5cc004;
    font-size: 25px;
    color: #fff;
}

.seo-updated-ppc-clients .ten {
    position: absolute;
    bottom: 320px;
    left: 620px;
    color: #5cc004;
    font-size: 25px;
    color: #fff;
}

.seo-updated-ppc-clients .eleven {
    position: absolute;
    bottom: 310px;
    left: 320px;
    color: #5cc004;
    font-size: 25px;
    color: #fff;
}

.seo-updated-ppc-clients .twelve {
    position: absolute;
    bottom: 380px;
    left: 125px;
    color: #5cc004;
    font-size: 25px;
    color: #fff;
}

.seo-updated-ppc-clients .thirteen {
    position: absolute;
    bottom: 300px;
    left: 920px;
    color: #5cc004;
    font-size: 25px;
    color: #fff;
}

.seo-updated-ppc-clients .fourteen {
    position: absolute;
    bottom: 450px;
    left: 720px;
    color: #5cc004;
    font-size: 25px;
    color: #fff;
}

.seo-updated-ppc-clients .fifteen {
    position: absolute;
    bottom: 610px;
    left: 1140px;
    color: #5cc004;
    font-size: 25px;
    color: #fff;
}

.seo-updated-ppc-pricing .heading h2 {
    font-family: Inter;
    margin-bottom: 20px;
    font-size: 50px;
    letter-spacing: -2px;
    font-weight: 900;
    line-height: 55px;
    background: -webkit-linear-gradient(left, #3978ac 30%, #00a14b 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.seo-updated-ppc-pricing .heading p {
    font-family: Inter;
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 12px;
    letter-spacing: -1px;
    color: #000;
}

.seo-updated-ppc-pricing .col-md-4 {
    margin: 0;
    padding: 0;
}

.seo-updated-ppc-pricing #myTabContent {
    position: relative;
    right: 0;
}

.seo-updated-ppc-pricing #myTabContent .table-1,
.social-ppc-pricing #myTabContent .table-2,
.social-ppc-pricing #myTabContent .table-3 {
    border: 1px solid #ccc;
    width: 370px;
    margin: 0 auto;
}

.seo-updated-ppc-pricing ul#myTab {
    width: 520px;
    margin: 0 auto !important;
    box-shadow: 2px 2px 20px rgb(0 0 0 / 70%);
    padding: 10px 27px;
    position: relative;
    bottom: -18px;
    z-index: 60;
    background-color: #fff;
    border-radius: 16px;
}

.seo-updated-ppc-pricing .nav-tabs .nav-link {
    background-color: #fff;
    border: none;
    outline: 0;
    font-size: 18px;
    font-weight: 900;
    color: #000;
    font-family: Inter;
}

.seo-updated-ppc-pricing .nav-tabs a span {
    color: #a80b0b;
    font-size: 16px;
    font-weight: 700;
}

.seo-updated-ppc-pricing .nav-tabs a.active span {
    color: #fff;
}

.seo-updated-ppc-pricing .nav-tabs .nav-link.active {
    background-color: #a80b0b !important;
    color: #fff !important;
    border-radius: 12px !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    padding: 11px 20px;
}

.seo-tabs .tab-pane .cont_1 {
    background-image: linear-gradient(#0071bc, #034c77);
    padding: 50px 30px 30px 30px;
}

.seo-tabs .tab-pane .cont_1 h4,
.tab-pane .cont_2 h4,
.tab-pane .cont_3 h4 {
    text-align: left;
    font-family: Inter;
    font-weight: 300;
    font-size: 24px;
    color: #fff;
}

.seo-tabs .tab-pane .cont_1 h2,
.tab-pane .cont_2 h2,
.tab-pane .cont_3 h2 {
    font-size: 50px;
    font-weight: 700;
    font-family: Inter;
    margin-bottom: 4px;
    color: #fff;
}

.seo-tabs .tab-pane .cont_1 h2 span,
.tab-pane .cont_2 h2 span,
.tab-pane .cont_3 h2 span {
    font-size: 20px;
    font-weight: 500;
    font-family: Inter;
}

.seo-tabs .tab-pane .cont_1 p,
.tab-pane .cont_2 p,
.tab-pane .cont_3 p {
    font-size: 13px;
    line-height: 16px;
    font-weight: 400;
    font-family: Inter;
    color: #fff;
}

.seo-tabs .tab-pane .cont_2 {
    background-image: linear-gradient(#069647, #05512b);
    padding: 50px 30px 30px 30px;
}

.seo-tabs .tab-pane .cont_2 h4 {
    text-align: left;
}

.seo-tabs .tab-pane .cont_3 {
    background-image: linear-gradient(#f3bc18, #cda52b);
    padding: 50px 30px 30px 30px;
}

.seo-tabs .tab-pane .cont_3 h4 {
    text-align: left;
}

.seo-tabs .ser1 {
    padding: 10px 30px;
    overflow-y: scroll;
    height: 270px;
}

.seo-tabs .ser1 .heading1 {
    font-size: 20px;
    color: #393c3e;
    text-decoration: none;
    font-weight: 800;
    font-family: Inter;
    border-bottom: 2px solid #034d79;
    padding: 2px 0;
    margin-bottom: 6px;
    width: 190px;
}

.seo-tabs .ser1 .heading2 {
    font-size: 20px;
    color: #393c3e;
    text-decoration: none;
    font-weight: 800;
    font-family: Inter;
    border-bottom: 2px solid #034d79;
    padding: 2px 0;
    margin-bottom: 6px;
    width: 90px;
}

.seo-tabs .ser1 .heading3 {
    font-size: 20px;
    color: #393c3e;
    text-decoration: none;
    font-weight: 800;
    font-family: Inter;
    border-bottom: 2px solid #034d79;
    padding: 2px 0;
    margin-bottom: 6px;
    width: 135px;
}

.seo-tabs .ser1 p {
    font-family: Inter;
    font-size: 14px;
    font-weight: 400;
}

.seo-tabs .ser1 h5 {
    font-family: Inter;
    font-size: 14px;
    font-weight: 400;
}

.seo-tabs .ser1 p .fa {
    margin-right: 6px;
    color: #29ae3c;
}

.seo-tabs .ser1::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 50px;
    background-color: #ccc;
}

.seo-tabs .ser1::-webkit-scrollbar {
    width: 4px;
    border-radius: 50px;
    margin-right: 12px;
    background-color: #3b7ca7;
}

.seo-tabs .ser1::-webkit-scrollbar-thumb {
    border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #3b7ca7;
}

.seo-tabs .ser2::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 50px;
    background-color: #ccc;
}

.seo-tabs .ser2::-webkit-scrollbar {
    width: 4px;
    border-radius: 50px;
    margin-right: 12px;
    background-color: #069647;
}

.seo-tabs .ser2::-webkit-scrollbar-thumb {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #069647;
}

.seo-tabs .ser3::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 50px;
    background-color: #ccc;
}

.seo-tabs .ser3::-webkit-scrollbar {
    width: 4px;
    border-radius: 50px;
    margin-right: 12px;
    background-color: #f3bc18;
}

.seo-tabs .ser3::-webkit-scrollbar-thumb {
    border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #f3bc18;
}

.seo-tabs .ser2 {
    padding: 10px 30px;
    overflow-y: scroll;
    height: 270px;
    background-color: #f0f4f6;
}

.seo-tabs .ser2 .heading1 {
    font-size: 20px;
    color: #393c3e;
    text-decoration: none;
    font-weight: 800;
    font-family: Inter;
    border-bottom: 2px solid #069647;
    padding: 2px 0;
    margin-bottom: 6px;
    width: 190px;
}

.seo-tabs .ser2 .heading2 {
    font-size: 20px;
    color: #393c3e;
    text-decoration: none;
    font-weight: 800;
    font-family: Inter;
    border-bottom: 2px solid #069647;
    padding: 2px 0;
    margin-bottom: 6px;
    width: 90px;
}

.seo-tabs .ser2 .heading3 {
    font-size: 20px;
    color: #393c3e;
    text-decoration: none;
    font-weight: 800;
    font-family: Inter;
    border-bottom: 2px solid #069647;
    padding: 2px 0;
    margin-bottom: 6px;
    width: 135px;
}

.seo-tabs .ser2 p {
    font-family: Inter;
    font-size: 14px;
    font-weight: 400;
}

.seo-tabs .ser2 h5 {
    font-family: Inter;
    font-size: 14px;
    font-weight: 400;
}

.seo-tabs .ser2 p .fa {
    margin-right: 6px;
    color: #29ae3c;
}

.seo-tabs .ser3 {
    padding: 10px 30px;
    overflow-y: scroll;
    height: 270px;
}

.seo-tabs .ser3 .heading1 {
    font-size: 20px;
    color: #393c3e;
    text-decoration: none;
    font-weight: 800;
    font-family: Inter;
    border-bottom: 2px solid #f3bc18;
    padding: 2px 0;
    margin-bottom: 6px;
    width: 190px;
}

.seo-tabs .ser3 .heading2 {
    font-size: 20px;
    color: #393c3e;
    text-decoration: none;
    font-weight: 800;
    font-family: Inter;
    border-bottom: 2px solid #f3bc18;
    padding: 2px 0;
    margin-bottom: 6px;
    width: 90px;
}

.seo-tabs .ser3 .heading3 {
    font-size: 20px;
    color: #393c3e;
    text-decoration: none;
    font-weight: 800;
    font-family: Inter;
    border-bottom: 2px solid #f3bc18;
    padding: 2px 0;
    margin-bottom: 6px;
    width: 135px;
}

.seo-tabs .ser3 p {
    font-family: Inter;
    font-size: 14px;
    font-weight: 400;
}

.seo-tabs .ser3 h5 {
    font-family: Inter;
    font-size: 14px;
    font-weight: 400;
}

.seo-tabs .ser3 p .fa {
    margin-right: 6px;
    color: #29ae3c;
}

.seo-tabs .order-now {
    padding: 10px 30px;
}

.seo-tabs .btn-order {
    background-image: linear-gradient(to right, #0071bc, #034d78);
    border-radius: 0;
    border: none;
    outline: 0;
    padding: 0 32px;
}

.btn-order:active,
.btn-order:focus,
.seo-tabs .btn-order:hover {
    background-image: linear-gradient(to right, #0071bc, #034d78);
    color: #fff;
}

.seo-tabs .order-now .btn {
    margin-bottom: 12px;
}

.seo-tabs .order-now h5 {
    font-family: Inter;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 4px;
}

.seo-tabs .order-now p {
    font-family: Inter;
    font-size: 15px;
    font-weight: 600;
}

.seo-tabs .order-now p .fa {
    color: #d00202;
    font-size: 18px;
    margin-right: 4px;
}

.seo-tabs .order-now2 {
    padding: 10px 30px;
    background-color: #f0f4f6;
}

.seo-tabs .btn-order_2 {
    background-image: linear-gradient(to right, #069647, #05542b);
    border-radius: 0;
    border: none;
    outline: 0;
    padding: 0 32px;
}

.seo-tabs .btn-order_2:hover {
    background-image: linear-gradient(to right, #069647, #05542b);
    color: #fff;
}

.seo-tabs .order-now2 .btn {
    margin-bottom: 12px;
}

.seo-tabs .order-now2 h5 {
    font-family: Inter;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 4px;
}

.seo-tabs .order-now2 p {
    font-family: Inter;
    font-size: 15px;
    font-weight: 600;
}

.seo-tabs .order-now2 p .fa {
    color: #d00202;
    font-size: 18px;
    margin-right: 4px;
}

.seo-tabs .order-now3 {
    padding: 10px 30px;
}

.seo-tabs .btn-order_3 {
    background-image: linear-gradient(to right, #f3bc18, #cfa62b);
    border-radius: 0;
    border: none;
    outline: 0;
    padding: 0 32px;
}

.seo-tabs .btn-order_3:hover {
    background-image: linear-gradient(to right, #f3bc18, #cfa62b);
    color: #fff;
}

.seo-tabs .order-now3 .btn {
    margin-bottom: 12px;
}

.seo-tabs .order-now3 h5 {
    font-family: Inter;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 4px;
}

.seo-tabs .order-now3 p {
    font-family: Inter;
    font-size: 15px;
    font-weight: 600;
}

.seo-tabs .order-now3 p .fa {
    color: #d00202;
    font-size: 18px;
    margin-right: 4px;
}

li.nav-item {
    margin: 0 12px;
}

.seo-updated-ppc-choose .head h2 {
    font-family: Inter;
    margin-bottom: 6px;
    font-size: 50px;
    letter-spacing: -2px;
    font-weight: 900;
    line-height: 55px;
    background: -webkit-linear-gradient(left, #3978ac 30%, #00a14b 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.seo-updated-ppc-choose .head p {
    font-family: Inter;
    font-size: 17px;
    font-family: Inter;
    color: #000;
    font-weight: 600;
    margin-bottom: 50px;
}

.seo-updated-ppc-choose .heading h3 {
    font-family: Inter;
    font-weight: 900;
    font-size: 34px;
    letter-spacing: -2px;
    line-height: 40px;
    color: #262626;
    margin-bottom: 18px;
}

.seo-updated-ppc-choose .heading p {
    font-family: Inter;
    font-weight: 500;
    font-size: 17px;
    line-height: 22px;
    color: #000;
    padding-right: 20px;
    letter-spacing: -1px;
}

.seo-updated-ppc-choose .heading p span {
    font-family: Inter;
    margin-bottom: 6px;
    font-size: 17px;
    letter-spacing: -1px;
    font-weight: 900;
    line-height: 55px;
    background: -webkit-linear-gradient(left, #3978ac 30%, #00a14b 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.seo-updated-ppc-choose .btn-grow {
    width: 200px;
    background: linear-gradient(to right, #069647, #05532b);
}

.seo-updated-ppc-choose .btn-folks {
    background: #000;
    color: #fff;
    font-weight: 600;
    width: 200px;
}

.seo-updated-ppc-choose .img-wrapper img {
    max-width: 440px;
    height: 300px;
    margin-top: -20px;
}

.seo-updated-ppc-choose .img-wrapper h2 {
    font-family: Inter;
    font-weight: 900;
    color: #000;
    font-size: 28px;
    line-height: 30px;
    margin-bottom: 30px;
}

.seo-updated-ppc-choose .text-area {
    margin-top: 30px;
}

.seo-updated-ppc-choose .text-area h3 {
    font-size: 38px;
    font-family: Inter;
    font-weight: 900;
    background: -webkit-linear-gradient(left, #76358d 30%, #e31a6e 40%, #f18f39);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
    line-height: 44px;
    margin-bottom: 0;
}

.seo-updated-ppc-choose .box-one {
    background-color: transparent;
    border-style: solid;
    border-width: 2px;
    border-image: linear-gradient(45deg, #3879aa, #01a04d) 1;
    padding: 12px 2px;
    width: 130px;
    height: 140px;
    margin: 16px 10px;
    box-shadow: 2px 2px 20px #ccc;
}

.seo-updated-ppc-choose .box-one img {
    margin-bottom: 10px;
}

.seo-updated-ppc-choose .box-one .off {
    display: none;
}

.seo-updated-ppc-choose .box-one h6 {
    font-family: Inter;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -1px;
}

.seo-updated-ppc-choose .box-one:hover h6 {
    color: #fff;
}

.seo-updated-ppc-choose .box-one:hover .off {
    display: block;
    margin-left: 35px;
}

.seo-updated-ppc-choose .box-one:hover .on {
    display: none;
}

.seo-updated-ppc-choose .box-one:hover {
    background: linear-gradient(to left, #3879aa, #01a04d);
}

.seo-updated-ppc-choose .col-md--2-two {
    margin-top: -50px;
}

.seo-updated-ppc-choose .col-md--2-four {
    margin-top: -50px;
}

.seo-updated-ppc-choose .d-flex {
    margin-top: 80px;
}

.seo-updated-ppc-choose .box-two {
    background-color: transparent;
    border-style: solid;
    border-width: 2px;
    border-image: linear-gradient(45deg, #3879aa, #01a04d) 1;
    padding: 12px 2px;
    width: 130px;
    height: 140px;
    margin: 16px 10px;
    box-shadow: 2px 2px 20px #ccc;
}

.seo-updated-ppc-choose .box-two img {
    margin-bottom: 10px;
}

.seo-updated-ppc-choose .box-two .off {
    display: none;
}

.seo-updated-ppc-choose .box-two h6 {
    font-family: Inter;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -1px;
}

.seo-updated-ppc-choose .box-two:hover .off {
    display: block;
    margin-left: 30px;
}

.seo-updated-ppc-choose .box-two:hover .on {
    display: none;
}

.seo-updated-ppc-choose .box-two:hover h6 {
    color: #fff;
}

.seo-updated-ppc-choose .box-two:hover {
    background: linear-gradient(to left, #3879aa, #01a04d);
}

.seo-ppc-social-media-ads .heading h3 {
    font-family: Inter;
    margin-bottom: 30px;
    font-size: 50px;
    letter-spacing: -2px;
    font-weight: 900;
    line-height: 50px;
    background: -webkit-linear-gradient(left, #3978ac 30%, #00a14b 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.seo-ppc-social-media-ads .heading p {
    font-size: 18px;
    font-family: Inter;
    font-weight: 600;
    letter-spacing: -1px;
    line-height: 20px;
    margin-bottom: 32px;
    color: #262626;
    letter-spacing: -1px;
    margin-bottom: 60px;
}

.seo-ppc-social-media-ads .card {
    margin: 10px;
    display: inline-block;
    position: relative;
    width: 350px;
    height: 420px;
    opacity: 0.85;
}

.back,
.seo-ppc-social-media-ads .front {
    width: 100%;
    height: 100%;
    position: absolute;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
    border-radius: 0;
}

.seo-ppc-social-media-ads .front-one {
    transform: rotateY(0);
    background-image: url(../images/seo-ppc/card1.png);
    background-size: cover;
    background-position: bottom;
    text-align: center;
    padding: 30px;
}

.seo-ppc-social-media-ads .back-one {
    background: #000;
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    padding: 30px 25px !important;
    color: #fff;
}

.seo-ppc-social-media-ads .card:hover .front-one {
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
}

.seo-ppc-social-media-ads .card:hover .back-one {
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
}

.seo-ppc-social-media-ads .front-two {
    transform: rotateY(0);
    background-image: url(../images/seo-ppc/card2.png);
    background-size: cover;
    background-position: bottom;
    text-align: center;
    padding: 30px;
}

.seo-ppc-social-media-ads .back-two {
    background: #000;
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    padding: 30px 25px !important;
    color: #fff;
}

.seo-ppc-social-media-ads .card:hover .front-two {
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
}

.seo-ppc-social-media-ads .card:hover .back-two {
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
}

.seo-ppc-social-media-ads .front-three {
    transform: rotateY(0);
    background-image: url(../images/seo-ppc/card2.png);
    background-size: cover;
    background-position: bottom;
    text-align: center;
    padding: 30px;
}

.seo-ppc-social-media-ads .back-three {
    background: #000;
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    padding: 30px 25px !important;
    color: #fff;
}

.seo-ppc-social-media-ads .card:hover .front-three {
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
}

.seo-ppc-social-media-ads .card:hover .back-three {
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
}

.seo-ppc-social-media-ads .front-four {
    transform: rotateY(0);
    background-image: url(../images/seo-ppc/card4.png);
    background-size: cover;
    background-position: bottom;
    text-align: center;
    padding: 30px;
}

.seo-ppc-social-media-ads .back-four {
    background: #000;
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    padding: 30px 25px !important;
    color: #fff;
}

.seo-ppc-social-media-ads .card:hover .front-four {
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
}

.seo-ppc-social-media-ads .card:hover .back-four {
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
}

.seo-ppc-social-media-ads .front-five {
    transform: rotateY(0);
    background-image: url(../images/seo-ppc/card5.png);
    background-size: cover;
    background-position: bottom;
    text-align: center;
    padding: 30px;
}

.seo-ppc-social-media-ads .back-five {
    background: #000;
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    padding: 30px 25px !important;
    color: #fff;
}

.seo-ppc-social-media-ads .card:hover .front-five {
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
}

.seo-ppc-social-media-ads .card:hover .back-five {
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
}

.seo-ppc-social-media-ads .front-six {
    transform: rotateY(0);
    background-image: url(../images/seo-ppc/card6.png);
    background-size: cover;
    background-position: bottom;
    text-align: center;
    padding: 30px;
}

.seo-ppc-social-media-ads .back-six {
    background: #000;
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    padding: 30px 25px !important;
    color: #fff;
}

.seo-ppc-social-media-ads .card:hover .front-six {
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
}

.seo-ppc-social-media-ads .card:hover .back-six {
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
}

.seo-ppc-social-media-ads .front {
    padding: 70px 30px;
}

.seo-ppc-social-media-ads .front h4 {
    font-family: Inter;
    text-align: left !important;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0;
}

.seo-ppc-social-media-ads .front p {
    font-family: Inter;
    text-align: left !important;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 25px;
    line-height: 20px;
}

.seo-ppc-social-media-ads .back {
    padding: 12px 30px;
}

.seo-ppc-social-media-ads .back h4 {
    text-align: left;
    margin-bottom: 4px;
    font-weight: 700;
    font-family: Inter;
    font-size: 16px;
}

.seo-ppc-social-media-ads .back p {
    text-align: left;
    margin-bottom: 8px;
    font-size: 14px;
}

.seo-ppc-social-media-ads .back a {
    text-align: left;
    margin-bottom: 8px;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

.seo-ppc-social-media-ads .back .btn-danger {
    background-color: transparent;
    border: 2px solid #fff;
    padding: 1px 16px;
    border-radius: 0;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
    width: 100%;
}

.seo-ppc-min-strategy .text-area {
    padding: 140px 0 20px 0;
}

.seo-ppc-min-strategy .text-area h1 {
    font-size: 40px;
    font-family: Inter;
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 42px;
    margin-bottom: 40px !important;
    color: #262626;
}

.seo-ppc-min-strategy .text-area h1 span {
    font-family: Inter;
    margin-bottom: 6px;
    font-size: 38px;
    letter-spacing: -2px;
    font-weight: 900;
    line-height: 40px;
    background: -webkit-linear-gradient(left, #3978ac 30%, #00a14b 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.seo-ppc-min-strategy .text-area .btn-live-chat {
    background-image: linear-gradient(to right, #0071bc, #034c76);
    text-decoration: none;
    color: #fff;
    padding: 1px 32px;
    font-size: 15px;
    font-family: Inter;
    margin-right: 16px;
    border-radius: 0;
    outline: 0;
    border: none;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: normal;
    margin-top: 15px;
}

.seo-ppc-min-strategy .min-strategy-form {
    background-color: #fff !important;
    padding: 20px 25px;
    width: 85%;
    margin: 0 auto;
    margin-top: 75px;
    border-radius: 0;
    box-shadow: 2px 2px 30px #888;
}

.seo-ppc-min-strategy .min-strategy-form label {
    color: #000;
    font-size: 16px;
    font-weight: 700;
    padding: 0 0;
    letter-spacing: -1px;
}

.seo-ppc-min-strategy .min-strategy-form ::placeholder {
    color: #888;
    font-size: 13px;
    letter-spacing: -1px;
}

.seo-ppc-min-strategy .min-strategy-form input {
    background-color: transparent;
    font-size: 12px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #888;
    border-radius: 0;
    color: #000;
    padding: 1px 0;
}

.seo-ppc-min-strategy .min-strategy-form input:focus {
    background-color: transparent;
    font-size: 14px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    border-radius: 0;
}

.seo-ppc-min-strategy .min-strategy-form .btn {
    background-image: linear-gradient(to right, #0071bc, #034c76);
    width: 100%;
    outline: 0;
    border: none;
    font-size: 17px;
    font-weight: 600;
    font-family: Inter;
    letter-spacing: -1px;
    border-radius: 0;
    outline: 0;
    border: none;
}

.seo-ppc-min-strategy .heading h3 {
    color: #000 !important;
    font-size: 32px;
    font-family: Inter;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 0;
    background: unset;
    -webkit-text-fill-color: unset;
}

.seo-ppc-min-strategy .text-side h3 {
    font-family: Inter;
    font-weight: 900;
    font-size: 28px;
    margin-bottom: 18px;
    background: -webkit-linear-gradient(left, #743bbc 10%, #0f9bcc 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.seo-ppc-min-strategy .text-side .col-md-3,
.seo-ppc-min-strategy .text-side .col-md-4 {
    margin: 2px 0 7px 0;
}

.seo-ppc-min-strategy .text-side .d-flex h5 {
    font-family: Inter;
    font-weight: 900;
    font-size: 15px;
    color: #000;
}

.seo-ppc-min-strategy .text-side2 {
    margin: 18px 0;
}

.seo-ppc-min-strategy .text-side2 p {
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    color: #2f2f2f;
    margin-bottom: 14px;
}

.seo-ppc-min-strategy .text-side2 h5 {
    font-family: Inter;
    font-weight: 900;
    font-size: 20px;
    color: #000;
}

.seo-ppc-min-strategy .text-side2 h5 span {
    font-family: Inter;
    font-weight: 900;
    font-size: 20px;
    color: #36a1d5;
}

.social-ppc-faq .section-titles h2 {
    font-family: Inter;
    margin-bottom: 6px;
    font-size: 50px;
    letter-spacing: -2px;
    font-weight: 900;
    line-height: 55px;
    background: -webkit-linear-gradient(left, #3978ac 30%, #00a14b 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 30px;
}

.social-ppc-faq .section-title h2 {
    font-family: Inter;
    margin-bottom: 6px;
    font-size: 50px;
    letter-spacing: -2px;
    font-weight: 900;
    line-height: 55px;
    color: #262626;
    margin-bottom: 30px;
}

.social-ppc-faq .faq-list {
    padding: 0 70px;
}

.social-ppc-faq .faq-list ul {
    padding: 0;
    list-style: none;
}

.social-ppc-faq .faq-list li+li {
    margin-top: 15px;
}

.social-ppc-faq .faq-list li {
    padding: 20px 0;
    background-color: #2b2b2b;
    position: relative;
    padding: 12px 32px;
    border-radius: 10px;
    width: 800px;
    margin: 0 auto;
}

.social-ppc-faq .faq-list a {
    display: block;
    position: relative;
    font-family: 'Inter', sans-serif !important;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    padding: 0;
    outline: 0;
    cursor: pointer;
    color: #fff;
}

.social-ppc-faq .faq-list a:hover {
    display: block;
    position: relative;
    font-family: 'Inter', sans-serif !important;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    padding: 0;
    outline: 0;
    cursor: pointer;
    color: #fff;
}

.social-ppc-faq .faq-list .icon-close,
.social-ppc-faq .faq-list .icon-show {
    font-size: 24px;
    position: absolute;
    right: 0;
    top: 0;
    color: #fff;
}

.social-ppc-faq .faq-list p {
    margin-bottom: 0;
    padding: 10px 0 0 0;
    font-size: 13px;
    color: #fff;
}

.social-ppc-faq .faq-list .icon-show {
    display: none;
}

.social-ppc-faq .faq-list a.collapsed {
    color: #fff;
}

.social-ppc-faq .faq-list a.collapsed .icon-show {
    display: inline-block;
    font-size: 16px;
    margin-top: 4px;
}

.social-ppc-faq .faq-list .fa-chevron-up:before {
    font-size: 16px;
    margin-top: 4px;
}

.social-ppc-faq .faq-list a.collapsed .icon-close {
    display: none;
}

@media screen and (max-width: 526px) {
    .seo-updated-ppc-hero {
        height: auto;
        background-image: unset;
    }

    .seo-updated-ppc-hero .text-area {
        margin-top: 65px;
    }

    .seo-updated-ppc-hero .text-area h1 {
        font-size: 25px;
        line-height: 32px;
    }

    .seo-updated-ppc-hero .text-area br {
        display: none;
    }

    .seo-updated-ppc-hero .text-area p {
        padding-right: 0 !important;
    }

    .seo-updated-ppc-hero .seo-updated-ppc-hero-form {
        margin: 0 auto;
        width: 95%;
    }

    .social-media-ppc-numbers {
        margin-top: 0;
    }

    .social-media-ppc-numbers .counter-box p {
        margin-top: 0;
    }

    .social-media-ppc-numbers .firstchild {
        margin-bottom: 20px;
    }

    .social-media-ppc-numbers .counter-box {
        border-left: none;
        margin-bottom: 20px;
    }

    .seo-updated-ppc-questions .questions .img6 {
        top: 0;
    }

    .seo-updated-ppc-questions .heading2 .btn {
        font-size: 12px;
        padding: 2px 16px;
    }

    .seo-updated-ppc-questions .heading2 h3 {
        font-size: 26px;
        margin-top: 25px;
    }

    .seo-updated-ppc-clients .text-area h3 {
        font-size: 30px;
        line-height: 30px;
    }

    .seo-updated-ppc-clients .map-img img {
        max-width: 360px;
    }

    .seo-updated-ppc-clients .btn-live-chat {
        width: 220px;
    }

    .seo-updated-ppc-pricing .heading h2 {
        font-size: 30px;
        line-height: 30px;
    }

    .seo-updated-ppc-pricing .heading h2 br {
        display: none;
    }

    .seo-updated-ppc-questions .heading h2 {
        font-size: 30px;
        line-height: 32px;
    }

    .seo-updated-ppc-pricing nav {
        display: block !important;
    }

    .seo-updated-ppc-pricing ul#myTab {
        width: 200px;
    }

    .seo-updated-ppc-pricing li.nav-item {
        margin: 0 auto;
    }

    .seo-updated-ppc-pricing .tab-pane .d-flex {
        display: block !important;
    }

    .seo-updated-ppc-pricing .tab-pane .d-flex .table-1 {
        margin-bottom: 120px;
    }

    .seo-updated-ppc-pricing #myTabContent .table-1,
    .social-ppc-pricing #myTabContent .table-2,
    .social-ppc-pricing #myTabContent .table-3 {
        width: 312px;
        margin-bottom: 24px;
    }

    .seo-tabs .ser1 p,
    .seo-tabs .ser2 p,
    .seo-tabs .ser3 p {
        text-align: left !important;
    }

    .seo-updated-ppc-choose .head h2 {
        font-size: 40px;
    }

    .seo-updated-ppc-choose .heading h3 {
        font-size: 30px;
        line-height: 30px;
    }

    .seo-updated-ppc-choose .btn-folks {
        margin-right: 15px;
    }

    .seo-updated-ppc-choose .img-wrapper h2 {
        font-size: 22px;
        margin-top: 16px;
    }

    .seo-updated-ppc-choose .img-wrapper img {
        max-width: 320px;
        height: auto;
    }

    .seo-ppc-social-media-ads .heading h3 {
        font-size: 32px;
        line-height: 38px;
    }

    .seo-ppc-social-media-ads .heading h3 br {
        display: none;
    }

    .seo-ppc-min-strategy .text-area .btn-live-chat {
        padding: 2px 10px;
        font-size: 14px;
    }

    .seo-ppc-social-media-ads .heading h3 {
        font-size: 28px;
    }

    .social-ppc-faq .section-title h2 {
        font-size: 34px;
        line-height: 40px;
    }

    .social-ppc-faq .faq-list {
        padding: 0 !important;
    }

    .seo-updated-ppc-clients .one {
        position: absolute;
        top: 100px;
        left: 250px;
        color: #5cc004;
        font-size: 25px;
        color: #fff;
    }

    .seo-updated-ppc-clients .two {
        position: absolute;
        bottom: 90px;
        left: 200px;
        color: #5cc004;
        font-size: 25px;
        color: #fff;
    }

    .seo-updated-ppc-clients .three {
        position: absolute;
        top: 100px;
        left: 50px;
        color: #5cc004;
        font-size: 25px;
        color: #fff;
    }

    .seo-updated-ppc-clients .four {
        position: absolute;
        top: 20px;
        left: 80px;
        color: #5cc004;
        font-size: 25px;
        color: #fff;
    }

    .seo-updated-ppc-clients .five {
        position: absolute;
        bottom: 110px;
        right: 190px;
        color: #5cc004;
        font-size: 25px;
        color: #fff;
    }

    .seo-updated-ppc-clients .six {
        position: absolute;
        bottom: 200px;
        left: 20px;
        color: #5cc004;
        font-size: 25px;
        color: #fff;
    }

    .seo-updated-ppc-clients .seven {
        position: absolute;
        bottom: 180px;
        right: 240px;
        color: #5cc004;
        font-size: 25px;
        color: #fff;
    }

    .seo-updated-ppc-clients .eight {
        position: absolute;
        bottom: 120px;
        left: 100px;
        color: #5cc004;
        font-size: 25px;
        color: #fff;
    }

    .seo-updated-ppc-clients .nine {
        position: absolute;
        bottom: 480px;
        left: 520px;
        color: #5cc004;
        font-size: 25px;
        color: #fff;
    }

    .seo-updated-ppc-clients .ten {
        position: absolute;
        bottom: 200px;
        left: 180px;
        color: #5cc004;
        font-size: 25px;
        color: #fff;
    }

    .seo-updated-ppc-clients .eleven {
        position: absolute;
        bottom: 146px;
        left: 200px;
        color: #5cc004;
        font-size: 25px;
        color: #fff;
    }

    .seo-updated-ppc-clients .twelve {
        position: absolute;
        bottom: 380px;
        left: 125px;
        color: #5cc004;
        font-size: 25px;
        color: #fff;
    }

    .seo-updated-ppc-clients .thirteen {
        position: absolute;
        bottom: 300px;
        left: 920px;
        color: #5cc004;
        font-size: 25px;
        color: #fff;
    }

    .seo-updated-ppc-clients .fourteen {
        position: absolute;
        bottom: 450px;
        left: 720px;
        color: #5cc004;
        font-size: 25px;
        color: #fff;
    }

    .seo-updated-ppc-clients .fifteen {
        position: absolute;
        bottom: 610px;
        left: 1140px;
        color: #5cc004;
        font-size: 25px;
        color: #fff;
    }

    .seo-updated-ppc-choose .box-one {
        background-color: transparent;
        border-style: solid;
        border-width: 2px;
        border-image: linear-gradient(45deg, #3879aa, #01a04d) 1;
        padding: 12px 2px;
        width: 130px;
        height: 140px;
        margin: 12px auto;
        box-shadow: 2px 2px 20px #ccc;
    }

    .seo-updated-ppc-choose .box-one img {
        margin-bottom: 10px;
    }

    .seo-updated-ppc-choose .box-one h6 {
        font-family: Inter;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: -1px;
    }

    .seo-updated-ppc-choose .box-one:hover h6 {
        color: #fff;
    }

    .seo-updated-ppc-choose .box-one:hover {
        background: linear-gradient(to left, #3879aa, #01a04d);
    }

    .seo-updated-ppc-choose .col-md--2-two {
        margin: 20px 0;
    }

    .seo-updated-ppc-choose .col-md--2-four {
        margin: 20px 0;
    }

    .seo-updated-ppc-choose .d-flex {
        display: block !important;
        margin: 12px auto !important;
    }

    .seo-updated-ppc-choose .box-two {
        background-color: transparent;
        border-style: solid;
        border-width: 2px;
        border-image: linear-gradient(45deg, #3879aa, #01a04d) 1;
        padding: 12px 2px;
        width: 130px;
        height: 140px;
        margin: 0 auto;
        box-shadow: 2px 2px 20px #ccc;
    }

    .seo-updated-ppc-choose .box-two img {
        margin-bottom: 10px;
    }

    .seo-updated-ppc-choose .box-two h6 {
        font-family: Inter;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: -1px;
    }

    .seo-updated-ppc-choose .box-two:hover h6 {
        color: #fff;
    }

    .seo-updated-ppc-choose .box-two:hover {
        background: linear-gradient(to left, #3879aa, #01a04d);
    }
}

.ecommerce-hero {
    background-image: url(../images/social-media-lp-ppc/hero-bg.png);
    background-repeat: no-repeat;
    background-position: 1% 20%;
    background-size: cover;
    width: 100%;
    height: 110vh;
}

.ecommerce-hero .text-area {
    padding: 25px 0 20px 0;
}

.ecommerce-hero .text-area h1 {
    font-family: Inter;
    margin-bottom: 12px;
    font-size: 44px;
    letter-spacing: -2px;
    font-weight: 900;
    line-height: 51px;
    background: -webkit-linear-gradient(left, #3978ac 30%, #00a14b 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ecommerce-hero .text-area p {
    font-size: 16px;
    color: #5e5e5e;
    margin-bottom: 20px;
    font-family: Inter;
    font-weight: 500;
    padding-right: 90px !important;
    line-height: 25px;
    letter-spacing: -1px;
}

.ecommerce-hero .text-area .btn-live-chat {
    background: 0 0;
    text-decoration: none;
    color: #0f9665;
    padding: 0 40px;
    font-size: 16px;
    font-family: Inter;
    font-weight: 600;
    margin-right: 16px;
    border-radius: 0;
    margin-bottom: 18px;
    border: 2px solid #0f9665;
    box-shadow: none;
}

.ecommerce-hero .text-area .btn-get-quote {
    background-color: #0f9665;
    text-decoration: none;
    color: #fff;
    padding: 2px 50px;
    font-size: 16px;
    font-family: Inter;
    font-weight: 600;
    border-radius: 0;
    outline: 0;
    border: none;
    margin-bottom: 18px;
    box-shadow: none;
}

.ecommerce-hero .ecommerce-hero-form {
    background-color: #fff !important;
    padding: 20px 25px;
    width: 80%;
    margin: 0 auto;
    margin-left: 95px;
    margin-top: 40px;
    border-radius: 0;
    box-shadow: 2px 2px 30px #888;
}

.ecommerce-hero .ecommerce-hero-form label {
    color: #000;
    font-size: 16px;
    font-weight: 700;
    padding: 0 0;
    letter-spacing: -1px;
}

.ecommerce-hero .ecommerce-hero-form ::placeholder {
    color: #888;
    font-size: 13px;
    letter-spacing: -1px;
}

.ecommerce-hero .ecommerce-hero-form input {
    background-color: transparent;
    font-size: 12px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #888;
    border-radius: 0;
    color: #000;
    padding: 2px 0;
}

.ecommerce-hero .ecommerce-hero-form input:focus {
    background-color: transparent;
    font-size: 14px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    border-radius: 0;
}

.ecommerce-hero .ecommerce-hero-form .btn {
    box-shadow: none;
    background-image: linear-gradient(to right, #069647, #05532b);
    width: 100%;
    outline: 0;
    border: none;
    font-size: 17px;
    font-weight: 600;
    font-family: Inter;
    letter-spacing: -1px;
    border-radius: 0;
    outline: 0;
    border: none;
}

.ecommerce-hero .ecommerce-hero-form .btn.active {
    background-image: linear-gradient(to right, #069647, #05532b);
    width: 100%;
    outline: 0;
    border: none;
    font-size: 17px;
    font-weight: 600;
    font-family: Inter;
    letter-spacing: -1px;
    border-radius: 0;
    outline: 0;
    border: none;
}

.ecommerce-hero .heading h3 {
    color: #000;
    font-size: 30px;
    font-family: Inter;
    font-weight: 900;
    letter-spacing: -2px;
}

.ecommerce-hero .heading h3 span {
    font-family: Inter;
    font-size: 32px;
    letter-spacing: -2px;
    font-weight: 900;
    line-height: 42px;
    color: #099b5a;
}

.ecommerce-numbers {
    margin-top: 0;
}

.ecommerce-numbers .counter-box {
    border-left: 1px solid #888;
}

.ecommerce-numbers .firstchild {
    border-left: none !important;
    margin-left: 13px;
}

.ecommerce-numbers .counter-box .numbers-img img {
    margin-right: 4px;
    margin-bottom: 4px;
    object-fit: contain;
    max-width: 50px;
}

.ecommerce-numbers .firstchild .numbers-img img {
    margin-bottom: 14px !important;
}

.ecommerce-numbers .secondchild .numbers-img img {
    height: 44px;
    margin-bottom: 14px;
}

.ecommerce-numbers .counter-box .numbers-img h3 {
    font-family: Inter;
    font-size: 38px;
    font-weight: 700;
    color: #000;
    padding-top: 0;
    margin-left: 1px;
}

.ecommerce-numbers .col-lg-4 {
    padding: 0 !important;
}

.ecommerce-numbers .counter-box p {
    text-transform: uppercase;
    font-family: Inter;
    font-weight: 700;
    font-size: 12px;
    line-height: 10px;
    margin-top: 7px;
    color: #000 !important;
    letter-spacing: -1px;
}

.ecommerce-seo-clients .text-area {
    margin-bottom: 20px;
}

.ecommerce-seo-clients .text-area h3 {
    font-family: Inter;
    margin-bottom: -10px;
    font-size: 50px;
    letter-spacing: -2px;
    font-weight: 900;
    line-height: 50px;
    background: -webkit-linear-gradient(left, #3978ac 30%, #00a14b 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 18px;
}

.ecommerce-seo-clients .text-area p {
    font-family: Inter;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: -1px;
    color: #515151;
}

.ecommerce-seo-clients .map-img img {
    max-width: 1100px;
    position: relative;
    margin-bottom: 0;
}

.ecommerce-seo-clients .btn-live-chat {
    background-image: linear-gradient(to right, #069647, #05522b);
    text-decoration: none;
    color: #fff;
    padding: 2px 40px;
    font-size: 14px;
    font-family: Inter;
    margin-right: 16px;
    border-radius: 0;
    outline: 0;
    border: none;
    margin-bottom: 18px;
    text-transform: uppercase;
    width: 200px;
    box-shadow: none;
}

.ecommerce-seo-clients .btn-call {
    background-color: #2b2b2b;
    text-decoration: none;
    color: #fff;
    padding: 2px 40px;
    font-size: 14px;
    font-family: Inter;
    margin-right: 16px;
    border-radius: 0;
    outline: 0;
    border: none;
    margin-bottom: 18px;
    text-transform: uppercase;
    box-shadow: none;
}

.ecommerce-seo-clients .one {
    position: absolute;
    top: 100px;
    left: 250px;
    color: #5cc004;
    font-size: 25px;
    color: #fff;
}

.ecommerce-seo-clients .two {
    position: absolute;
    bottom: 280px;
    left: 400px;
    color: #5cc004;
    font-size: 25px;
    color: #fff;
}

.ecommerce-seo-clients .three {
    position: absolute;
    top: 200px;
    left: 500px;
    color: #5cc004;
    font-size: 25px;
    color: #fff;
}

.ecommerce-seo-clients .four {
    position: absolute;
    top: 220px;
    left: 250px;
    color: #5cc004;
    font-size: 25px;
    color: #fff;
}

.ecommerce-seo-clients .five {
    position: absolute;
    bottom: 200px;
    right: 670px;
    color: #5cc004;
    font-size: 25px;
    color: #fff;
}

.ecommerce-seo-clients .six {
    position: absolute;
    bottom: 200px;
    left: 800px;
    color: #5cc004;
    font-size: 25px;
    color: #fff;
}

.ecommerce-seo-clients .seven {
    position: absolute;
    bottom: 500px;
    right: 820px;
    color: #5cc004;
    font-size: 25px;
    color: #fff;
}

.ecommerce-seo-clients .eight {
    position: absolute;
    bottom: 500px;
    left: 1070px;
    color: #5cc004;
    font-size: 25px;
    color: #fff;
}

.ecommerce-seo-clients .nine {
    position: absolute;
    bottom: 480px;
    left: 520px;
    color: #5cc004;
    font-size: 25px;
    color: #fff;
}

.ecommerce-seo-clients .ten {
    position: absolute;
    bottom: 320px;
    left: 620px;
    color: #5cc004;
    font-size: 25px;
    color: #fff;
}

.ecommerce-seo-clients .eleven {
    position: absolute;
    bottom: 310px;
    left: 320px;
    color: #5cc004;
    font-size: 25px;
    color: #fff;
}

.ecommerce-seo-clients .twelve {
    position: absolute;
    bottom: 380px;
    left: 125px;
    color: #5cc004;
    font-size: 25px;
    color: #fff;
}

.ecommerce-seo-clients .thirteen {
    position: absolute;
    bottom: 300px;
    left: 920px;
    color: #5cc004;
    font-size: 25px;
    color: #fff;
}

.ecommerce-seo-clients .fourteen {
    position: absolute;
    bottom: 450px;
    left: 720px;
    color: #5cc004;
    font-size: 25px;
    color: #fff;
}

.ecommerce-seo-clients .fifteen {
    position: absolute;
    bottom: 610px;
    left: 1140px;
    color: #5cc004;
    font-size: 25px;
    color: #fff;
}

.ecommerce-seo-pricing .heading h2 {
    font-family: Inter;
    margin-bottom: 20px;
    font-size: 50px;
    letter-spacing: -2px;
    font-weight: 900;
    line-height: 55px;
    background: -webkit-linear-gradient(left, #3978ac 30%, #00a14b 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ecommerce-seo-pricing .heading p {
    font-family: Inter;
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 12px;
    letter-spacing: -1px;
    color: #000;
}

.ecommerce-seo-pricing .col-md-4 {
    margin: 0;
    padding: 0;
}

.ecommerce-seo-pricing #myTabContent {
    position: relative;
    right: 0;
}

.ecommerce-seo-pricing #myTabContent .table-1,
.social-ppc-pricing #myTabContent .table-2,
.social-ppc-pricing #myTabContent .table-3 {
    border: 1px solid #ccc;
    width: 370px;
    margin: 0 auto;
}

.ecommerce-seo-pricing ul#myTab {
    width: 520px;
    margin: 0 auto !important;
    box-shadow: 2px 2px 20px rgb(0 0 0 / 70%);
    padding: 10px 27px;
    position: relative;
    bottom: -18px;
    z-index: 60;
    background-color: #fff;
    border-radius: 16px;
}

.ecommerce-seo-pricing .nav-tabs .nav-link {
    background-color: #fff;
    border: none;
    outline: 0;
    font-size: 18px;
    font-weight: 900;
    color: #000;
    font-family: Inter;
}

.ecommerce-seo-pricing .nav-tabs a span {
    color: #a80b0b;
    font-size: 16px;
    font-weight: 700;
}

.ecommerce-seo-pricing .nav-tabs a.active span {
    color: #fff;
}

.ecommerce-seo-pricing .nav-tabs .nav-link.active {
    background-color: #a80b0b !important;
    color: #fff !important;
    border-radius: 12px !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    padding: 11px 20px;
}

.ecommerce-tabs .tab-pane .cont_1 {
    background: #3b7ca7;
    padding: 50px 30px 30px 30px;
}

.ecommerce-tabs .tab-pane .cont_1 h4,
.tab-pane .cont_2 h4,
.tab-pane .cont_3 h4 {
    text-align: left;
    font-family: Inter;
    font-weight: 300;
    font-size: 24px;
    color: #fff;
}

.ecommerce-tabs .tab-pane .cont_1 h2,
.tab-pane .cont_2 h2,
.tab-pane .cont_3 h2 {
    font-size: 50px;
    font-weight: 700;
    font-family: Inter;
    margin-bottom: 4px;
    color: #fff;
}

.ecommerce-tabs .tab-pane .cont_1 h2 span,
.tab-pane .cont_2 h2 span,
.tab-pane .cont_3 h2 span {
    font-size: 20px;
    font-weight: 500;
    font-family: Inter;
}

.ecommerce-tabs .tab-pane .cont_1 p,
.tab-pane .cont_2 p,
.tab-pane .cont_3 p {
    font-size: 13px;
    line-height: 16px;
    font-weight: 400;
    font-family: Inter;
    color: #fff;
}

.ecommerce-tabs .tab-pane .cont_2 {
    background: #31a65a;
    padding: 50px 30px 30px 30px;
}

.ecommerce-tabs .tab-pane .cont_2 h4 {
    text-align: left;
}

.ecommerce-tabs .tab-pane .cont_3 {
    background: #ccb732;
    padding: 50px 30px 30px 30px;
}

.ecommerce-tabs .tab-pane .cont_3 h4 {
    text-align: left;
}

.ecommerce-tabs .ser1 {
    padding: 10px 30px;
    overflow-y: scroll;
    height: 270px;
}

.ecommerce-tabs .ser1 .heading1 {
    font-size: 20px;
    color: #393c3e;
    text-decoration: none;
    font-weight: 800;
    font-family: Inter;
    border-bottom: 2px solid #3b7ca7;
    padding: 2px 0;
    margin-bottom: 6px;
    width: 190px;
}

.ecommerce-tabs .ser1 .heading2 {
    font-size: 20px;
    color: #393c3e;
    text-decoration: none;
    font-weight: 800;
    font-family: Inter;
    border-bottom: 2px solid #3b7ca7;
    padding: 2px 0;
    margin-bottom: 6px;
    width: 90px;
}

.ecommerce-tabs .ser1 .heading3 {
    font-size: 20px;
    color: #393c3e;
    text-decoration: none;
    font-weight: 800;
    font-family: Inter;
    border-bottom: 2px solid #3b7ca7;
    padding: 2px 0;
    margin-bottom: 6px;
    width: 135px;
}

.ecommerce-tabs .ser1 p {
    font-family: Inter;
    font-size: 14px;
    font-weight: 400;
}

.ecommerce-tabs .ser1 h5 {
    font-family: Inter;
    font-size: 14px;
    font-weight: 400;
}

.ecommerce-tabs .ser1 p .fa {
    margin-right: 6px;
    color: #29ae3c;
}

.ecommerce-tabs .ser1::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 50px;
    background-color: #ccc;
}

.ecommerce-tabs .ser1::-webkit-scrollbar {
    width: 4px;
    border-radius: 50px;
    margin-right: 12px;
    background-color: #3b7ca7;
}

.ecommerce-tabs .ser1::-webkit-scrollbar-thumb {
    border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #3b7ca7;
}

.ecommerce-tabs .ser2::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 50px;
    background-color: #ccc;
}

.ecommerce-tabs .ser2::-webkit-scrollbar {
    width: 4px;
    border-radius: 50px;
    margin-right: 12px;
    background-color: #31a65a;
}

.ecommerce-tabs .ser2::-webkit-scrollbar-thumb {
    border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #31a65a;
}

.ecommerce-tabs .ser3::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 50px;
    background-color: #ccc;
}

.ecommerce-tabs .ser3::-webkit-scrollbar {
    width: 4px;
    border-radius: 50px;
    margin-right: 12px;
    background-color: #ccb732;
}

.ecommerce-tabs .ser3::-webkit-scrollbar-thumb {
    border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #ccb732;
}

.ecommerce-tabs .ser2 {
    padding: 10px 30px;
    overflow-y: scroll;
    height: 270px;
    background-color: #f0f4f6;
}

.ecommerce-tabs .ser2 .heading1 {
    font-size: 20px;
    color: #393c3e;
    text-decoration: none;
    font-weight: 800;
    font-family: Inter;
    border-bottom: 2px solid #31a65a;
    padding: 2px 0;
    margin-bottom: 6px;
    width: 190px;
}

.ecommerce-tabs .ser2 .heading2 {
    font-size: 20px;
    color: #393c3e;
    text-decoration: none;
    font-weight: 800;
    font-family: Inter;
    border-bottom: 2px solid #31a65a;
    padding: 2px 0;
    margin-bottom: 6px;
    width: 90px;
}

.ecommerce-tabs .ser2 .heading3 {
    font-size: 20px;
    color: #393c3e;
    text-decoration: none;
    font-weight: 800;
    font-family: Inter;
    border-bottom: 2px solid #31a65a;
    padding: 2px 0;
    margin-bottom: 6px;
    width: 135px;
}

.ecommerce-tabs .ser2 p {
    font-family: Inter;
    font-size: 14px;
    font-weight: 400;
}

.ecommerce-tabs .ser2 h5 {
    font-family: Inter;
    font-size: 14px;
    font-weight: 400;
}

.ecommerce-tabs .ser2 p .fa {
    margin-right: 6px;
    color: #29ae3c;
}

.ecommerce-tabs .ser3 {
    padding: 10px 30px;
    overflow-y: scroll;
    height: 270px;
}

.ecommerce-tabs .ser3 .heading1 {
    font-size: 20px;
    color: #393c3e;
    text-decoration: none;
    font-weight: 800;
    font-family: Inter;
    border-bottom: 2px solid #ccb732;
    padding: 2px 0;
    margin-bottom: 6px;
    width: 190px;
}

.ecommerce-tabs .ser3 .heading2 {
    font-size: 20px;
    color: #393c3e;
    text-decoration: none;
    font-weight: 800;
    font-family: Inter;
    border-bottom: 2px solid #ccb732;
    padding: 2px 0;
    margin-bottom: 6px;
    width: 90px;
}

.ecommerce-tabs .ser3 .heading3 {
    font-size: 20px;
    color: #393c3e;
    text-decoration: none;
    font-weight: 800;
    font-family: Inter;
    border-bottom: 2px solid #ccb732;
    padding: 2px 0;
    margin-bottom: 6px;
    width: 135px;
}

.ecommerce-tabs .ser3 p {
    font-family: Inter;
    font-size: 14px;
    font-weight: 400;
}

.ecommerce-tabs .ser3 h5 {
    font-family: Inter;
    font-size: 14px;
    font-weight: 400;
}

.ecommerce-tabs .ser3 p .fa {
    margin-right: 6px;
    color: #29ae3c;
}

.ecommerce-tabs .order-now {
    padding: 10px 30px;
}

.ecommerce-tabs .btn-order {
    background-image: linear-gradient(to right, #0071bc, #034d78);
    border-radius: 0;
    border: none;
    outline: 0;
    padding: 0 32px;
}

.btn-order:active,
.btn-order:focus,
.ecommerce-tabs .btn-order:hover {
    background-image: linear-gradient(to right, #0071bc, #034d78);
    color: #fff;
}

.ecommerce-tabs .order-now .btn {
    margin-bottom: 12px;
}

.ecommerce-tabs .order-now h5 {
    font-family: Inter;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 4px;
}

.ecommerce-tabs .order-now p {
    font-family: Inter;
    font-size: 15px;
    font-weight: 600;
}

.ecommerce-tabs .order-now p .fa {
    color: #d00202;
    font-size: 18px;
    margin-right: 4px;
}

.ecommerce-tabs .order-now2 {
    padding: 10px 30px;
    background-color: #f0f4f6;
}

.ecommerce-tabs .btn-order_2 {
    background-image: linear-gradient(to right, #069647, #05542b);
    border-radius: 0;
    border: none;
    outline: 0;
    padding: 0 32px;
}

.ecommerce-tabs .btn-order_2:hover {
    background-image: linear-gradient(to right, #069647, #05542b);
    color: #fff;
}

.ecommerce-tabs .order-now2 .btn {
    margin-bottom: 12px;
}

.ecommerce-tabs .order-now2 h5 {
    font-family: Inter;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 4px;
}

.ecommerce-tabs .order-now2 p {
    font-family: Inter;
    font-size: 15px;
    font-weight: 600;
}

.ecommerce-tabs .order-now2 p .fa {
    color: #d00202;
    font-size: 18px;
    margin-right: 4px;
}

.ecommerce-tabs .order-now3 {
    padding: 10px 30px;
}

.ecommerce-tabs .btn-order_3 {
    background-image: linear-gradient(to right, #f3bc18, #cfa62b);
    border-radius: 0;
    border: none;
    outline: 0;
    padding: 0 32px;
}

.ecommerce-tabs .btn-order_3:hover {
    background-image: linear-gradient(to right, #f3bc18, #cfa62b);
    color: #fff;
}

.ecommerce-tabs .order-now3 .btn {
    margin-bottom: 12px;
}

.ecommerce-tabs .order-now3 h5 {
    font-family: Inter;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 4px;
}

.ecommerce-tabs .order-now3 p {
    font-family: Inter;
    font-size: 15px;
    font-weight: 600;
}

.ecommerce-tabs .order-now3 p .fa {
    color: #d00202;
    font-size: 18px;
    margin-right: 4px;
}

li.nav-item {
    margin: 0 12px;
}

.why-do-ecommerce {
    padding: 60px 0 0 0;
}

.why-do-ecommerce .col-md-6 {
    margin: 40px 0;
}

.why-do-ecommerce .img-wrapper img {
    max-width: 500px;
}

.why-do-ecommerce .heading {
    margin-top: 20px;
}

.why-do-ecommerce .heading h3 {
    font-family: Inter;
    margin-bottom: 16px;
    font-size: 48px;
    letter-spacing: -2px;
    font-weight: 900;
    line-height: 50px;
    background: -webkit-linear-gradient(left, #3978ac 30%, #00a14b 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.why-do-ecommerce .heading p {
    font-size: 16px;
    font-family: Inter;
    font-weight: 400;
    letter-spacing: -1px;
    line-height: 24px;
    color: #262626;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.why-do-ecommerce .heading a {
    font-size: 17px;
    font-family: Inter;
    font-weight: 700;
    color: #000;
    text-decoration: none;
    border-bottom: 2px solid #000;
}

.why-choose-ecommerce-seo .head {
    margin-top: -30px;
}

.why-choose-ecommerce-seo .head h2 {
    font-family: Inter;
    margin-bottom: 8px;
    font-size: 48px;
    letter-spacing: -2px;
    font-weight: 900;
    line-height: 55px;
    background: -webkit-linear-gradient(left, #3978ac 30%, #00a14b 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.why-choose-ecommerce-seo .head p {
    font-size: 18px;
    font-family: Inter;
    font-weight: 400;
    line-height: 24px;
    color: #515151;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.why-choose-ecommerce-seo .content-area {
    padding: 20px 0 0 0;
}

.why-choose-ecommerce-seo .content-area h3 {
    font-family: Inter;
    font-weight: 800;
    font-size: 24px;
    color: #000;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.why-choose-ecommerce-seo .content-area p {
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    color: #515151;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.ecommerce-seo-social-media-ads .heading h3 {
    font-family: Inter;
    margin-bottom: 16px;
    font-size: 48px;
    letter-spacing: -2px;
    font-weight: 900;
    line-height: 54px;
    background: -webkit-linear-gradient(left, #3978ac 30%, #00a14b 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ecommerce-seo-social-media-ads .heading p {
    font-size: 18px;
    font-family: Inter;
    font-weight: 500;
    letter-spacing: -1px;
    line-height: 20px;
    margin-bottom: 32px;
    color: #262626;
    letter-spacing: -1px;
    margin-bottom: 40px;
}

.ecommerce-seo-social-media-ads .card {
    margin: 10px;
    display: inline-block;
    position: relative;
    width: 350px;
    height: 420px;
    opacity: 0.85;
}

.back,
.ecommerce-seo-social-media-ads .front {
    width: 100%;
    height: 100%;
    position: absolute;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
    border-radius: 0;
}

.ecommerce-seo-social-media-ads .front-one {
    transform: rotateY(0);
    background-image: url(../images/card-1.png);
    background-size: cover;
    background-position: bottom;
    text-align: center;
    padding: 30px;
}

.ecommerce-seo-social-media-ads .back-one {
    background: #000;
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    padding: 30px 25px !important;
    color: #fff;
}

.ecommerce-seo-social-media-ads .card:hover .front-one {
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
}

.ecommerce-seo-social-media-ads .card:hover .back-one {
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
}

.ecommerce-seo-social-media-ads .front-two {
    transform: rotateY(0);
    background-image: url(../images/card-2.png);
    background-size: cover;
    background-position: bottom;
    text-align: center;
    padding: 30px;
}

.ecommerce-seo-social-media-ads .back-two {
    background: #000;
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    padding: 30px 25px !important;
    color: #fff;
}

.ecommerce-seo-social-media-ads .card:hover .front-two {
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
}

.ecommerce-seo-social-media-ads .card:hover .back-two {
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
}

.ecommerce-seo-social-media-ads .front-three {
    transform: rotateY(0);
    background-image: url(../images/card-2.png);
    background-size: cover;
    background-position: bottom;
    text-align: center;
    padding: 30px;
}

.ecommerce-seo-social-media-ads .back-three {
    background: #000;
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    padding: 30px 25px !important;
    color: #fff;
}

.ecommerce-seo-social-media-ads .card:hover .front-three {
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
}

.ecommerce-seo-social-media-ads .card:hover .back-three {
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
}

.ecommerce-seo-social-media-ads .front-four {
    transform: rotateY(0);
    background-image: url(../images/card-3.png);
    background-size: cover;
    background-position: bottom;
    text-align: center;
    padding: 30px;
}

.ecommerce-seo-social-media-ads .back-four {
    background: #000;
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    padding: 30px 25px !important;
    color: #fff;
}

.ecommerce-seo-social-media-ads .card:hover .front-four {
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
}

.ecommerce-seo-social-media-ads .card:hover .back-four {
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
}

.ecommerce-seo-social-media-ads .front-five {
    transform: rotateY(0);
    background-image: url(../images/card-4.png);
    background-size: cover;
    background-position: bottom;
    text-align: center;
    padding: 30px;
}

.ecommerce-seo-social-media-ads .back-five {
    background: #000;
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    padding: 30px 25px !important;
    color: #fff;
}

.ecommerce-seo-social-media-ads .card:hover .front-five {
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
}

.ecommerce-seo-social-media-ads .card:hover .back-five {
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
}

.ecommerce-seo-social-media-ads .front-six {
    transform: rotateY(0);
    background-image: url(../images/card-5.png);
    background-size: cover;
    background-position: bottom;
    text-align: center;
    padding: 30px;
}

.ecommerce-seo-social-media-ads .back-six {
    background: #000;
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    padding: 30px 25px !important;
    color: #fff;
}

.ecommerce-seo-social-media-ads .card:hover .front-six {
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
}

.ecommerce-seo-social-media-ads .card:hover .back-six {
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
}

.ecommerce-seo-social-media-ads .front {
    padding: 70px 30px;
}

.ecommerce-seo-social-media-ads .front h4 {
    font-family: Inter;
    text-align: left !important;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0;
}

.ecommerce-seo-social-media-ads .front p {
    font-family: Inter;
    text-align: left !important;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 25px;
    line-height: 20px;
}

.ecommerce-seo-social-media-ads .back {
    padding: 12px 30px;
}

.ecommerce-seo-social-media-ads .back h4 {
    text-align: left;
    margin-bottom: 4px;
    font-weight: 700;
    font-family: Inter;
    font-size: 16px;
}

.ecommerce-seo-social-media-ads .back p {
    text-align: left;
    margin-bottom: 8px;
    font-size: 14px;
}

.ecommerce-seo-social-media-ads .back a {
    text-align: left;
    margin-bottom: 8px;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

.ecommerce-seo-social-media-ads .back .btn-danger {
    background-color: transparent;
    border: 2px solid #fff;
    padding: 1px 16px;
    border-radius: 0;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
    width: 100%;
}

.ecommerce-batting-blades .bg-img {
    background-image: url(../../../nJwaBs__P2JfMUeYJ4vmjQ/0cc972f4-411b-4aa6-5070-0ec8be515400/public);
    background-repeat: no-repeat;
    background-size: 128%;
    background-position: center;
    width: 100%;
    height: 80vh;
}

.ecommerce-batting-blades .heading {
    margin-top: 30px;
    margin-left: 100px;
}

.ecommerce-batting-blades .slider-paragraph p {
    margin-left: 50px;
    padding: 0 150px 50px 30px;
}

.ecommerce-batting-blades .swiper-button-next,
.ecommerce-batting-blades .swiper-button-prev {
    margin-top: -50px;
}

.ecommerce-batting-blades .heading h5 {
    font-family: Inter;
    font-size: 20px;
    font-weight: 700;
    color: #000;
}

.ecommerce-batting-blades .heading h2 {
    font-family: Inter;
    margin-bottom: 16px;
    font-size: 48px;
    letter-spacing: -2px;
    font-weight: 900;
    line-height: 60px;
    background: -webkit-linear-gradient(left, #3978ac 10%, #01a04d 40%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ecommerce-batting-blades .bg-numbers {
    background-image: url(../images/bg-numbers.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 25vh;
}

.ecommerce-batting-blades .bg-numbers .num-blades {
    padding: 24px 0;
}

.ecommerce-batting-blades .bg-numbers .num-blades h3 {
    color: #fff;
    font-family: Inter;
    font-weight: 900;
    font-size: 50px;
}

.ecommerce-batting-blades .bg-numbers .num-blades p {
    color: #fff;
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
}

.ecoomerce-seo-min-strategy {
    background-image: url(../../../nJwaBs__P2JfMUeYJ4vmjQ/ab87d0c4-55af-447b-89f8-e357884e2300/public);
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: cover;
    /* margin-top: -70px; */
    /* height: 100vh; */
    padding-top: 50px !important;
    margin-bottom: 80px;
}

/*.ecoomerce-seo-min-strategy .text-area {*/
/*  padding: 140px 0 20px 0;*/
/*}*/

.ecoomerce-seo-min-strategy .text-area h3 {
    font-size: 45px !important;
    font-family: Inter;
    font-weight: 400;
    letter-spacing: -2px;
    line-height: 50px;
    margin-bottom: 40px !important;
    color: #fff !important;
}

.ecoomerce-seo-min-strategy .text-area h3 span {
    font-family: Inter;
    margin-bottom: 6px;
    font-size: 48px;
    letter-spacing: -2px;
    font-weight: 900;
    line-height: 40px;
    background: -webkit-linear-gradient(left, #efc161 30%, #efac1e 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ecoomerce-seo-min-strategy .text-area .btn-live-chat {
    background: 0 0;
    text-decoration: none;
    color: #fff;
    padding: 1px 32px;
    font-size: 15px;
    font-family: Inter;
    margin-right: 16px;
    border-radius: 0;
    border: 1px solid #fff;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: normal;
    margin-top: 15px;
    box-shadow: none;
}

.min-strategy-form .col-md-12 {
    margin: 12px 0;
}

.ecoomerce-seo-min-strategy .min-strategy-form {
    background-color: #fff !important;
    padding: 20px 25px;
    width: 80%;
    margin: 0 auto;
    /*margin-top: 50px;*/
    border-radius: 0;
    box-shadow: 2px 2px 30px #888;
}

.ecoomerce-seo-min-strategy .min-strategy-form label {
    color: #000;
    font-size: 16px;
    font-weight: 700;
    padding: 0 0;
    letter-spacing: -1px;
}

.ecoomerce-seo-min-strategy .min-strategy-form ::placeholder {
    color: #888;
    font-size: 13px;
    letter-spacing: -1px;
}

.ecoomerce-seo-min-strategy .min-strategy-form input {
    background-color: transparent;
    font-size: 12px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #888;
    border-radius: 0;
    color: #000;
    padding: 1px 0;
    height: 40px;
    margin-bottom: 10px;
}

.ecoomerce-seo-min-strategy .min-strategy-form input:focus {
    background-color: transparent;
    font-size: 14px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    border-radius: 0;
}

.ecoomerce-seo-min-strategy .min-strategy-form .btn {
    background-image: linear-gradient(to right, #069647, #05522a);
    width: 100%;
    outline: 0;
    border: none;
    font-size: 17px;
    font-weight: 600;
    font-family: Inter;
    letter-spacing: -1px;
    border-radius: 0;
    outline: 0;
    border: none;
}

.ecoomerce-seo-min-strategy .heading h3 {
    color: #000 !important;
    font-size: 32px;
    font-family: Inter;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 0;
    background: unset;
    -webkit-text-fill-color: unset;
}

.ecoomerce-seo-min-strategy .text-side h3 {
    font-family: Inter;
    font-weight: 900;
    font-size: 28px;
    margin-bottom: 18px;
    background: -webkit-linear-gradient(left, #743bbc 10%, #0f9bcc 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ecoomerce-seo-min-strategy .text-side .col-md-3,
.ecoomerce-seo-min-strategy .text-side .col-md-4 {
    margin: 2px 0 7px 0;
}

.ecoomerce-seo-min-strategy .text-side .d-flex h5 {
    font-family: Inter;
    font-weight: 900;
    font-size: 15px;
    color: #000;
}

.ecoomerce-seo-min-strategy .text-side2 {
    margin: 18px 0;
}

.ecoomerce-seo-min-strategy .text-side2 p {
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    color: #2f2f2f;
    margin-bottom: 14px;
}

.ecoomerce-seo-min-strategy .text-side2 h5 {
    font-family: Inter;
    font-weight: 900;
    font-size: 20px;
    color: #000;
}

.ecoomerce-seo-min-strategy .text-side2 h5 span {
    font-family: Inter;
    font-weight: 900;
    font-size: 20px;
    color: #36a1d5;
}

.ecommerce-seo-faq {
    padding: 60px 0;
}

.ecommerce-seo-faq .section-title h2 {
    font-family: Inter;
    margin-bottom: 6px;
    font-size: 50px;
    letter-spacing: -2px;
    font-weight: 900;
    line-height: 55px;
    background: -webkit-linear-gradient(left, #3978ac 30%, #00a14b 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 30px;
}

.ecommerce-seo-faq .faq-list {
    padding: 0 70px;
}

.ecommerce-seo-faq .faq-list ul {
    padding: 0;
    list-style: none;
}

.ecommerce-seo-faq .faq-list li+li {
    margin-top: 15px;
}

.ecommerce-seo-faq .faq-list li {
    padding: 20px 0;
    background-color: #2b2b2b;
    position: relative;
    padding: 12px 32px;
    border-radius: 10px;
    width: 800px;
    margin: 0 auto;
}

.ecommerce-seo-faq .faq-list a {
    display: block;
    position: relative;
    font-family: 'Inter', sans-serif !important;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    padding: 0;
    outline: 0;
    cursor: pointer;
    color: #fff;
}

.ecommerce-seo-faq .faq-list a:hover {
    display: block;
    position: relative;
    font-family: 'Inter', sans-serif !important;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    padding: 0;
    outline: 0;
    cursor: pointer;
    color: #fff;
}

.ecommerce-seo-faq .faq-list .icon-show,
.social-ppc-faq .faq-list .icon-close {
    font-size: 24px;
    position: absolute;
    right: 0;
    top: 0;
    color: #fff;
}

.ecommerce-seo-faq .faq-list p {
    margin-bottom: 0;
    padding: 10px 0 0 0;
    font-size: 13px;
    color: #fff;
}

.ecommerce-seo-faq .faq-list .icon-show {
    display: none;
}

.ecommerce-seo-faq .faq-list a.collapsed {
    color: #fff;
}

.ecommerce-seo-faq .faq-list a.collapsed .icon-show {
    display: inline-block;
    font-size: 16px;
    margin-top: 4px;
}

.ecommerce-seo-faq .faq-list .fa-chevron-up:before {
    font-size: 16px;
    margin-top: 4px;
}

.ecommerce-seo-faq .faq-list a.collapsed .icon-close {
    display: none;
}

@media screen and (max-width: 626px) {
    .ecommerce-hero {
        height: auto;
        background-image: unset;
    }

    .ecommerce-hero .text-area {
        margin-top: 65px;
    }

    .ecommerce-hero .text-area h1 {
        font-size: 25px;
        line-height: 32px;
    }

    .ecommerce-hero .text-area br {
        display: none;
    }

    .ecommerce-hero .text-area p {
        padding-right: 0 !important;
    }

    .ecommerce-hero .ecommerce-hero-form {
        margin: 0 auto;
        width: 95%;
    }

    .ecommerce-numbers {
        margin-top: 0;
    }

    .ecommerce-numbers .counter-box p {
        margin-top: 0;
        letter-spacing: 0;
    }

    .ecommerce-numbers .firstchild {
        margin-bottom: 20px;
    }

    .ecommerce-numbers .firstchild .numbers-img {
        margin-left: 95px;
    }

    .ecommerce-numbers .counter-box {
        border-left: none;
        margin-bottom: 20px;
    }

    .seo-updated-ppc-questions .questions .img6 {
        top: 0;
    }

    .seo-updated-ppc-questions .heading2 .btn {
        font-size: 12px;
        padding: 2px 16px;
    }

    .seo-updated-ppc-questions .heading2 h3 {
        font-size: 26px;
        margin-top: 25px;
    }

    .ecommerce-seo-clients .text-area h3 {
        font-size: 32px;
        line-height: 36px;
    }

    .ecommerce-seo-clients .map-img img {
        max-width: 360px;
    }

    .ecommerce-seo-clients .btn-live-chat {
        width: 220px;
    }

    .ecommerce-seo-pricing .heading h2 {
        font-size: 30px;
        line-height: 30px;
    }

    .ecommerce-seo-pricing .heading h2 br {
        display: none;
    }

    .seo-updated-ppc-questions .heading h2 {
        font-size: 30px;
        line-height: 32px;
    }

    .ecommerce-seo-pricing nav {
        display: block !important;
    }

    .ecommerce-seo-pricing ul#myTab {
        width: 200px;
    }

    .ecommerce-seo-pricing li.nav-item {
        margin: 0 auto;
    }

    .ecommerce-seo-pricing .tab-pane .d-flex {
        display: block !important;
    }

    .ecommerce-seo-pricing .tab-pane .d-flex .table-1 {
        margin-bottom: 120px;
    }

    .ecommerce-seo-pricing #myTabContent .table-1,
    .social-ppc-pricing #myTabContent .table-2,
    .social-ppc-pricing #myTabContent .table-3 {
        width: 312px;
        margin-bottom: 24px;
    }

    .seo-tabs .ser1 p,
    .seo-tabs .ser2 p,
    .seo-tabs .ser3 p {
        text-align: left !important;
    }

    .seo-updated-ppc-choose .head h2 {
        font-size: 40px;
    }

    .seo-updated-ppc-choose .heading h3 {
        font-size: 30px;
        line-height: 30px;
    }

    .seo-updated-ppc-choose .btn-folks {
        margin-right: 15px;
    }

    .seo-updated-ppc-choose .img-wrapper h2 {
        font-size: 22px;
        margin-top: 16px;
    }

    .seo-updated-ppc-choose .img-wrapper img {
        max-width: 320px;
        height: auto;
    }

    .seo-ppc-social-media-ads .heading h3 {
        font-size: 32px;
        line-height: 38px;
    }

    .seo-ppc-social-media-ads .heading h3 br {
        display: none;
    }

    .seo-ppc-min-strategy .text-area .btn-live-chat {
        padding: 2px 10px;
        font-size: 14px;
    }

    .seo-ppc-social-media-ads .heading h3 {
        font-size: 28px;
    }

    .ecommerce-seo-faq .section-title h2 {
        font-size: 34px;
        line-height: 40px;
    }

    .ecommerce-seo-faq .faq-list {
        padding: 0 !important;
    }

    .ecommerce-seo-clients .one {
        position: absolute;
        top: 100px;
        left: 250px;
        color: #5cc004;
        font-size: 25px;
        color: #fff;
    }

    .ecommerce-seo-clients .two {
        position: absolute;
        bottom: 90px;
        left: 200px;
        color: #5cc004;
        font-size: 25px;
        color: #fff;
    }

    .ecommerce-seo-clients .three {
        position: absolute;
        top: 100px;
        left: 50px;
        color: #5cc004;
        font-size: 25px;
        color: #fff;
    }

    .ecommerce-seo-clients .four {
        position: absolute;
        top: 20px;
        left: 80px;
        color: #5cc004;
        font-size: 25px;
        color: #fff;
    }

    .ecommerce-seo-clients .five {
        position: absolute;
        bottom: 110px;
        right: 190px;
        color: #5cc004;
        font-size: 25px;
        color: #fff;
    }

    .ecommerce-seo-clients .six {
        position: absolute;
        bottom: 200px;
        left: 20px;
        color: #5cc004;
        font-size: 25px;
        color: #fff;
    }

    .ecommerce-seo-clients .seven {
        position: absolute;
        bottom: 180px;
        right: 240px;
        color: #5cc004;
        font-size: 25px;
        color: #fff;
    }

    .ecommerce-seo-clients .eight {
        position: absolute;
        bottom: 120px;
        left: 100px;
        color: #5cc004;
        font-size: 25px;
        color: #fff;
    }

    .ecommerce-seo-clients .nine {
        position: absolute;
        bottom: 480px;
        left: 520px;
        color: #5cc004;
        font-size: 25px;
        color: #fff;
    }

    .ecommerce-seo-clients .ten {
        position: absolute;
        bottom: 200px;
        left: 180px;
        color: #5cc004;
        font-size: 25px;
        color: #fff;
    }

    .ecommerce-seo-clients .eleven {
        position: absolute;
        bottom: 146px;
        left: 200px;
        color: #5cc004;
        font-size: 25px;
        color: #fff;
    }

    .ecommerce-seo-clients .twelve {
        position: absolute;
        bottom: 380px;
        left: 125px;
        color: #5cc004;
        font-size: 25px;
        color: #fff;
    }

    .ecommerce-seo-clients .thirteen {
        position: absolute;
        bottom: 300px;
        left: 920px;
        color: #5cc004;
        font-size: 25px;
        color: #fff;
    }

    .ecommerce-seo-clients .fourteen {
        position: absolute;
        bottom: 450px;
        left: 720px;
        color: #5cc004;
        font-size: 25px;
        color: #fff;
    }

    .ecommerce-seo-clients .fifteen {
        position: absolute;
        bottom: 610px;
        left: 1140px;
        color: #5cc004;
        font-size: 25px;
        color: #fff;
    }

    .why-do-ecommerce .img-wrapper img {
        max-width: 300px;
    }

    .why-do-ecommerce .heading h3 {
        font-size: 32px;
        line-height: 34px;
    }

    .why-do-ecommerce .heading h3 br {
        display: none;
    }

    .why-choose-ecommerce-seo .head h2 {
        font-size: 32px;
        line-height: 34px;
    }

    .why-choose-ecommerce-seo .head h2 br {
        display: none;
    }

    .ecommerce-seo-social-media-ads .heading h3 {
        font-size: 32px;
        line-height: 34px;
    }

    .ecommerce-seo-social-media-ads .heading h3 br {
        display: none;
    }

    .ecommerce-seo-social-media-ads .card {
        max-width: 312px;
    }

    .ecommerce-batting-blades .bg-numbers {
        height: auto;
    }

    .ecommerce-batting-blades .slider-paragraph p {
        margin: 0;
        padding: 20px;
    }

    .ecommerce-batting-blades .heading {
        margin: 0;
    }

    .ecommerce-batting-blades .swiper-button-next,
    .ecommerce-batting-blades .swiper-button-prev {
        display: none;
    }

    .ecoomerce-seo-min-strategy .text-area h1 {
        font-size: 32px;
        line-height: 36px;
        letter-spacing: -1px;
    }

    .ecoomerce-seo-min-strategy .text-area h1 br {
        display: none;
    }

    .ecoomerce-seo-min-strategy .text-area .btn-live-chat {
        padding: 1px 12px;
        font-size: 13px;
    }

    .ecoomerce-seo-min-strategy .heading h3 {
        font-size: 24px;
        letter-spacing: -1px;
    }

    .ecommerce-seo-faq .faq-list li {
        width: 310px;
        padding: 10px 15px;
    }

    .ecommerce-hero .text-area .btn-live-chat {
        padding: 0 45px;
        margin-left: 10px;
    }
}

.nationwide-hero {
    background-image: url(../images/social-media-lp-ppc/hero-bg.png);
    background-repeat: no-repeat;
    background-position: 1% 20%;
    background-size: cover;
    width: 100%;
    /* height: 110vh; */
    margin: 0;
    padding-top: 100px;
}

.nationwide-hero .text-area {
    padding: 25px 0 20px 0;
}

.nationwide-hero .text-area div.title , .nationwide-hero .text-area h1 {
    font-family: Inter;
    margin-bottom: 12px;
    font-size: 44px;
    letter-spacing: -2px;
    font-weight: 900;
    line-height: 51px;
    background: -webkit-linear-gradient(left, #3978ac 30%, #00a14b 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nationwide-hero .text-area p {
    font-size: 16px;
    color: #5e5e5e;
    margin-bottom: 20px;
    font-family: Inter;
    font-weight: 500;
    padding-right: 90px !important;
    line-height: 25px;
    letter-spacing: -1px;
}

.nationwide-hero .text-area .btn-live-chat {
    background: 0 0;
    text-decoration: none;
    color: #0f9665;
    padding: 0 40px;
    font-size: 16px;
    font-family: Inter;
    font-weight: 600;
    margin-right: 16px;
    border-radius: 0;
    margin-bottom: 18px;
    border: 2px solid #0f9665;
    box-shadow: none;
}

.nationwide-hero .text-area .btn-get-quote {
    background-color: #0f9665;
    text-decoration: none;
    color: #fff;
    padding: 2px 50px;
    font-size: 16px;
    font-family: Inter;
    font-weight: 600;
    border-radius: 0;
    outline: 0;
    border: none;
    margin-bottom: 18px;
    box-shadow: none;
}

.nationwide-hero .ecommerce-hero-form {
    background-color: #fff !important;
    padding: 20px 25px;
    width: 80%;
    margin: 0 auto;
    /* margin-left: 95px; */
    /* margin-top: 40px; */
    border-radius: 0;
    box-shadow: 2px 2px 30px #888;
}

.nationwide-hero .ecommerce-hero-form label {
    color: #000;
    font-size: 16px;
    font-weight: 700;
    padding: 0 0;
    letter-spacing: -1px;
}

.nationwide-hero .ecommerce-hero-form ::placeholder {
    color: #888;
    font-size: 13px;
    letter-spacing: -1px;
}

.nationwide-hero .ecommerce-hero-form input {
    background-color: transparent;
    font-size: 12px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #888;
    border-radius: 0;
    color: #000;
    padding: 2px 0;
    height: 45px;
}

.nationwide-hero .ecommerce-hero-form input:focus {
    background-color: transparent;
    font-size: 14px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    border-radius: 0;
}

.nationwide-hero .ecommerce-hero-form .btn {
    box-shadow: none;
    background-image: linear-gradient(to right, #069647, #05532b);
    width: 100%;
    outline: 0;
    border: none;
    font-size: 17px;
    font-weight: 600;
    font-family: Inter;
    letter-spacing: -1px;
    border-radius: 0;
    outline: 0;
    border: none;
    margin-top: 25px;
}

.nationwide-hero .ecommerce-hero-form .btn.active {
    background-image: linear-gradient(to right, #069647, #05532b);
    width: 100%;
    outline: 0;
    border: none;
    font-size: 17px;
    font-weight: 600;
    font-family: Inter;
    letter-spacing: -1px;
    border-radius: 0;
    outline: 0;
    border: none;
}

.nationwide-hero .heading h3 {
    color: #000;
    font-size: 30px;
    font-family: Inter;
    font-weight: 900;
    letter-spacing: -2px;
}

.nationwide-hero .heading h3 span {
    font-family: Inter;
    font-size: 32px;
    letter-spacing: -2px;
    font-weight: 900;
    line-height: 42px;
    color: #099b5a;
}

.nationwide-numbers {
    margin-top: 0;
}

.nationwide-numbers .counter-box {
    border-left: 1px solid #888;
}

.nationwide-numbers .firstchild {
    border-left: none !important;
    margin-left: 13px;
}

.nationwide-numbers .counter-box .numbers-img img {
    margin-right: 4px;
    margin-bottom: 4px;
    object-fit: contain;
    max-width: 50px;
}

.nationwide-numbers .firstchild .numbers-img img {
    margin-bottom: 14px !important;
}

.nationwide-numbers .secondchild .numbers-img img {
    height: 44px;
    margin-bottom: 14px;
}

.nationwide-numbers .counter-box .numbers-img h3 {
    font-family: Inter;
    font-size: 38px;
    font-weight: 700;
    color: #000;
    padding-top: 0;
    margin-left: 1px;
}

.nationwide-numbers .col-lg-4 {
    padding: 0 !important;
}

.nationwide-numbers .counter-box p {
    text-transform: uppercase;
    font-family: Inter;
    font-weight: 700;
    font-size: 12px;
    line-height: 10px;
    margin-top: 7px;
    color: #000 !important;
    letter-spacing: -1px;
}

.nationwide-seo-clients .text-area {
    margin-bottom: 20px;
}

.nationwide-seo-clients .text-area h3 {
    font-family: Inter;
    margin-bottom: -10px;
    font-size: 50px;
    letter-spacing: -2px;
    font-weight: 900;
    line-height: 50px;
    background: -webkit-linear-gradient(left, #3978ac 30%, #00a14b 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 18px;
}

.nationwide-seo-clients .text-area p {
    font-family: Inter;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: -1px;
    color: #515151;
}

.nationwide-seo-clients .map-img img {
    max-width: 1100px;
    position: relative;
    margin-bottom: 0;
}

.nationwide-seo-clients .btn-live-chat {
    background-image: linear-gradient(to right, #069647, #05522b);
    text-decoration: none;
    color: #fff;
    padding: 2px 40px;
    font-size: 14px;
    font-family: Inter;
    margin-right: 16px;
    border-radius: 0;
    outline: 0;
    border: none;
    margin-bottom: 18px;
    text-transform: uppercase;
    width: 200px;
    box-shadow: none;
}

.nationwide-seo-clients .btn-call {
    background-color: #2b2b2b;
    text-decoration: none;
    color: #fff;
    padding: 2px 40px;
    font-size: 14px;
    font-family: Inter;
    margin-right: 16px;
    border-radius: 0;
    outline: 0;
    border: none;
    margin-bottom: 18px;
    text-transform: uppercase;
    box-shadow: none;
}

.nationwide-seo-clients .one {
    position: absolute;
    top: 100px;
    left: 250px;
    color: #5cc004;
    font-size: 25px;
    color: #fff;
}

.nationwide-seo-clients .two {
    position: absolute;
    bottom: 280px;
    left: 400px;
    color: #5cc004;
    font-size: 25px;
    color: #fff;
}

.nationwide-seo-clients .three {
    position: absolute;
    top: 200px;
    left: 500px;
    color: #5cc004;
    font-size: 25px;
    color: #fff;
}

.nationwide-seo-clients .four {
    position: absolute;
    top: 220px;
    left: 250px;
    color: #5cc004;
    font-size: 25px;
    color: #fff;
}

.nationwide-seo-clients .five {
    position: absolute;
    bottom: 200px;
    right: 670px;
    color: #5cc004;
    font-size: 25px;
    color: #fff;
}

.nationwide-seo-clients .six {
    position: absolute;
    bottom: 200px;
    left: 800px;
    color: #5cc004;
    font-size: 25px;
    color: #fff;
}

.nationwide-seo-clients .seven {
    position: absolute;
    bottom: 500px;
    right: 820px;
    color: #5cc004;
    font-size: 25px;
    color: #fff;
}

.nationwide-seo-clients .eight {
    position: absolute;
    bottom: 500px;
    left: 1070px;
    color: #5cc004;
    font-size: 25px;
    color: #fff;
}

.nationwide-seo-clients .nine {
    position: absolute;
    bottom: 480px;
    left: 520px;
    color: #5cc004;
    font-size: 25px;
    color: #fff;
}

.nationwide-seo-clients .ten {
    position: absolute;
    bottom: 320px;
    left: 620px;
    color: #5cc004;
    font-size: 25px;
    color: #fff;
}

.nationwide-seo-clients .eleven {
    position: absolute;
    bottom: 310px;
    left: 320px;
    color: #5cc004;
    font-size: 25px;
    color: #fff;
}

.nationwide-seo-clients .twelve {
    position: absolute;
    bottom: 380px;
    left: 125px;
    color: #5cc004;
    font-size: 25px;
    color: #fff;
}

.nationwide-seo-clients .thirteen {
    position: absolute;
    bottom: 300px;
    left: 920px;
    color: #5cc004;
    font-size: 25px;
    color: #fff;
}

.nationwide-seo-clients .fourteen {
    position: absolute;
    bottom: 450px;
    left: 720px;
    color: #5cc004;
    font-size: 25px;
    color: #fff;
}

.nationwide-seo-clients .fifteen {
    position: absolute;
    bottom: 610px;
    left: 1140px;
    color: #5cc004;
    font-size: 25px;
    color: #fff;
}

.nationwide-seo-pricing .heading h2 {
    font-family: Inter;
    margin-bottom: 20px;
    font-size: 50px;
    letter-spacing: -2px;
    font-weight: 900;
    line-height: 55px;
    background: -webkit-linear-gradient(left, #3978ac 30%, #00a14b 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nationwide-seo-pricing .heading p {
    font-family: Inter;
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 12px;
    letter-spacing: -1px;
    color: #000;
}

.nationwide-seo-pricing .col-md-4 {
    margin: 0;
    padding: 0;
}

.nationwide-seo-pricing #myTabContent {
    position: relative;
    right: 0;
}

.nationwide-seo-pricing #myTabContent .table-1,
.social-ppc-pricing #myTabContent .table-2,
.social-ppc-pricing #myTabContent .table-3 {
    border: 1px solid #ccc;
    width: 370px;
    margin: 0 auto;
}

.nationwide-seo-pricing ul#myTab {
    width: 520px;
    margin: 0 auto !important;
    box-shadow: 2px 2px 20px rgb(0 0 0 / 70%);
    padding: 10px 27px;
    position: relative;
    bottom: -18px;
    z-index: 60;
    background-color: #fff;
    border-radius: 16px;
}

.nationwide-seo-pricing .nav-tabs .nav-link {
    background-color: #fff;
    border: none;
    outline: 0;
    font-size: 18px;
    font-weight: 900;
    color: #000;
    font-family: Inter;
}

.nationwide-seo-pricing .nav-tabs a span {
    color: #a80b0b;
    font-size: 16px;
    font-weight: 700;
}

.nationwide-seo-pricing .nav-tabs a.active span {
    color: #fff;
}

.nationwide-seo-pricing .nav-tabs .nav-link.active {
    background-color: #a80b0b !important;
    color: #fff !important;
    border-radius: 12px !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    padding: 11px 20px;
}

.nationwide-tabs .tab-pane .cont_1 {
    background: #3b7ca7;
    padding: 50px 30px 30px 30px;
}

.nationwide-tabs .tab-pane .cont_1 h4,
.tab-pane .cont_2 h4,
.tab-pane .cont_3 h4 {
    text-align: left;
    font-family: Inter;
    font-weight: 300;
    font-size: 24px;
    color: #fff;
}

.nationwide-tabs .tab-pane .cont_1 h2,
.tab-pane .cont_2 h2,
.tab-pane .cont_3 h2 {
    font-size: 50px;
    font-weight: 700;
    font-family: Inter;
    margin-bottom: 4px;
    color: #fff;
}

.nationwide-tabs .tab-pane .cont_1 h2 span,
.tab-pane .cont_2 h2 span,
.tab-pane .cont_3 h2 span {
    font-size: 20px;
    font-weight: 500;
    font-family: Inter;
}

.nationwide-tabs .tab-pane .cont_1 p,
.tab-pane .cont_2 p,
.tab-pane .cont_3 p {
    font-size: 13px;
    line-height: 16px;
    font-weight: 400;
    font-family: Inter;
    color: #fff;
}

.nationwide-tabs .tab-pane .cont_2 {
    background: #31a65a;
    padding: 50px 30px 30px 30px;
}

.nationwide-tabs .tab-pane .cont_2 h4 {
    text-align: left;
}

.nationwide-tabs .tab-pane .cont_3 {
    background: #ccb732;
    padding: 50px 30px 30px 30px;
}

.nationwide-tabs .tab-pane .cont_3 h4 {
    text-align: left;
}

.nationwide-tabs .ser1 {
    padding: 10px 30px;
    overflow-y: scroll;
    height: 270px;
}

.nationwide-tabs .ser1 .heading1 {
    font-size: 20px;
    color: #393c3e;
    text-decoration: none;
    font-weight: 800;
    font-family: Inter;
    border-bottom: 2px solid #3b7ca7;
    padding: 2px 0;
    margin-bottom: 6px;
    width: 190px;
}

.nationwide-tabs .ser1 .heading2 {
    font-size: 20px;
    color: #393c3e;
    text-decoration: none;
    font-weight: 800;
    font-family: Inter;
    border-bottom: 2px solid #3b7ca7;
    padding: 2px 0;
    margin-bottom: 6px;
    width: 90px;
}

.nationwide-tabs .ser1 .heading3 {
    font-size: 20px;
    color: #393c3e;
    text-decoration: none;
    font-weight: 800;
    font-family: Inter;
    border-bottom: 2px solid #3b7ca7;
    padding: 2px 0;
    margin-bottom: 6px;
    width: 135px;
}

.nationwide-tabs .ser1 p {
    font-family: Inter;
    font-size: 14px;
    font-weight: 400;
}

.nationwide-tabs .ser1 h5 {
    font-family: Inter;
    font-size: 14px;
    font-weight: 400;
}

.nationwide-tabs .ser1 p .fa {
    margin-right: 6px;
    color: #29ae3c;
}

.nationwide-tabs .ser1::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 50px;
    background-color: #ccc;
}

.nationwide-tabs .ser1::-webkit-scrollbar {
    width: 4px;
    border-radius: 50px;
    margin-right: 12px;
    background-color: #3b7ca7;
}

.nationwide-tabs .ser1::-webkit-scrollbar-thumb {
    border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #3b7ca7;
}

.nationwide-tabs .ser2::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 50px;
    background-color: #ccc;
}

.nationwide-tabs .ser2::-webkit-scrollbar {
    width: 4px;
    border-radius: 50px;
    margin-right: 12px;
    background-color: #31a65a;
}

.nationwide-tabs .ser2::-webkit-scrollbar-thumb {
    border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #31a65a;
}

.nationwide-tabs .ser3::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 50px;
    background-color: #ccc;
}

.nationwide-tabs .ser3::-webkit-scrollbar {
    width: 4px;
    border-radius: 50px;
    margin-right: 12px;
    background-color: #ccb732;
}

.nationwide-tabs .ser3::-webkit-scrollbar-thumb {
    border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #ccb732;
}

.nationwide-tabs .ser2 {
    padding: 10px 30px;
    overflow-y: scroll;
    height: 270px;
    background-color: #f0f4f6;
}

.nationwide-tabs .ser2 .heading1 {
    font-size: 20px;
    color: #393c3e;
    text-decoration: none;
    font-weight: 800;
    font-family: Inter;
    border-bottom: 2px solid #31a65a;
    padding: 2px 0;
    margin-bottom: 6px;
    width: 190px;
}

.nationwide-tabs .ser2 .heading2 {
    font-size: 20px;
    color: #393c3e;
    text-decoration: none;
    font-weight: 800;
    font-family: Inter;
    border-bottom: 2px solid #31a65a;
    padding: 2px 0;
    margin-bottom: 6px;
    width: 90px;
}

.nationwide-tabs .ser2 .heading3 {
    font-size: 20px;
    color: #393c3e;
    text-decoration: none;
    font-weight: 800;
    font-family: Inter;
    border-bottom: 2px solid #31a65a;
    padding: 2px 0;
    margin-bottom: 6px;
    width: 135px;
}

.nationwide-tabs .ser2 p {
    font-family: Inter;
    font-size: 14px;
    font-weight: 400;
}

.nationwide-tabs .ser2 h5 {
    font-family: Inter;
    font-size: 14px;
    font-weight: 400;
}

.nationwide-tabs .ser2 p .fa {
    margin-right: 6px;
    color: #29ae3c;
}

.nationwide-tabs .ser3 {
    padding: 10px 30px;
    overflow-y: scroll;
    height: 270px;
}

.nationwide-tabs .ser3 .heading1 {
    font-size: 20px;
    color: #393c3e;
    text-decoration: none;
    font-weight: 800;
    font-family: Inter;
    border-bottom: 2px solid #ccb732;
    padding: 2px 0;
    margin-bottom: 6px;
    width: 190px;
}

.nationwide-tabs .ser3 .heading2 {
    font-size: 20px;
    color: #393c3e;
    text-decoration: none;
    font-weight: 800;
    font-family: Inter;
    border-bottom: 2px solid #ccb732;
    padding: 2px 0;
    margin-bottom: 6px;
    width: 90px;
}

.nationwide-tabs .ser3 .heading3 {
    font-size: 20px;
    color: #393c3e;
    text-decoration: none;
    font-weight: 800;
    font-family: Inter;
    border-bottom: 2px solid #ccb732;
    padding: 2px 0;
    margin-bottom: 6px;
    width: 135px;
}

.nationwide-tabs .ser3 p {
    font-family: Inter;
    font-size: 14px;
    font-weight: 400;
}

.nationwide-tabs .ser3 h5 {
    font-family: Inter;
    font-size: 14px;
    font-weight: 400;
}

.nationwide-tabs .ser3 p .fa {
    margin-right: 6px;
    color: #29ae3c;
}

.nationwide-tabs .order-now {
    padding: 10px 30px;
}

.nationwide-tabs .btn-order {
    background-image: linear-gradient(to right, #0071bc, #034d78);
    border-radius: 0;
    border: none;
    outline: 0;
    padding: 0 32px;
}

.btn-order:active,
.btn-order:focus,
.nationwide-tabs .btn-order:hover {
    background-image: linear-gradient(to right, #0071bc, #034d78);
    color: #fff;
}

.nationwide-tabs .order-now .btn {
    margin-bottom: 12px;
}

.nationwide-tabs .order-now h5 {
    font-family: Inter;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 4px;
}

.nationwide-tabs .order-now p {
    font-family: Inter;
    font-size: 15px;
    font-weight: 600;
}

.nationwide-tabs .order-now p .fa {
    color: #d00202;
    font-size: 18px;
    margin-right: 4px;
}

.nationwide-tabs .order-now2 {
    padding: 10px 30px;
    background-color: #f0f4f6;
}

.nationwide-tabs .btn-order_2 {
    background-image: linear-gradient(to right, #069647, #05542b);
    border-radius: 0;
    border: none;
    outline: 0;
    padding: 0 32px;
}

.nationwide-tabs .btn-order_2:hover {
    background-image: linear-gradient(to right, #069647, #05542b);
    color: #fff;
}

.nationwide-tabs .order-now2 .btn {
    margin-bottom: 12px;
}

.nationwide-tabs .order-now2 h5 {
    font-family: Inter;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 4px;
}

.nationwide-tabs .order-now2 p {
    font-family: Inter;
    font-size: 15px;
    font-weight: 600;
}

.nationwide-tabs .order-now2 p .fa {
    color: #d00202;
    font-size: 18px;
    margin-right: 4px;
}

.nationwide-tabs .order-now3 {
    padding: 10px 30px;
}

.nationwide-tabs .btn-order_3 {
    background-image: linear-gradient(to right, #f3bc18, #cfa62b);
    border-radius: 0;
    border: none;
    outline: 0;
    padding: 0 32px;
}

.nationwide-tabs .btn-order_3:hover {
    background-image: linear-gradient(to right, #f3bc18, #cfa62b);
    color: #fff;
}

.nationwide-tabs .order-now3 .btn {
    margin-bottom: 12px;
}

.nationwide-tabs .order-now3 h5 {
    font-family: Inter;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 4px;
}

.nationwide-tabs .order-now3 p {
    font-family: Inter;
    font-size: 15px;
    font-weight: 600;
}

.nationwide-tabs .order-now3 p .fa {
    color: #d00202;
    font-size: 18px;
    margin-right: 4px;
}

li.nav-item {
    margin: 0 12px;
}

.why-do-nationwide {
    padding: 60px 0 0 0;
}

.why-do-nationwide .col-md-6 {
    margin: 40px 0;
}

.why-do-nationwide .img-wrapper img {
    max-width: 500px;
}

.why-do-nationwide .heading {
    margin-top: 20px;
}

.why-do-nationwide .heading div.title  , .why-do-nationwide .heading h2 {
    font-family: Inter;
    margin-bottom: 16px;
    font-size: 46px;
    letter-spacing: -2px;
    font-weight: 900;
    line-height: 50px;
    background: -webkit-linear-gradient(left, #3978ac 30%, #00a14b 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.why-do-nationwide .heading p {
    font-size: 16px;
    font-family: Inter;
    font-weight: 400;
    letter-spacing: -1px;
    line-height: 24px;
    color: #262626;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.why-do-nationwide .heading a {
    font-size: 17px;
    font-family: Inter;
    font-weight: 700;
    color: #000;
    text-decoration: none;
    border-bottom: 2px solid #000;
}

.why-choose-nationwide-seo .head {
    margin-top: -30px;
}

.why-choose-nationwide-seo .head h2 {
    font-family: Inter;
    margin-bottom: 8px;
    font-size: 48px;
    letter-spacing: -2px;
    font-weight: 900;
    line-height: 55px;
    background: -webkit-linear-gradient(left, #3978ac 30%, #00a14b 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.why-choose-nationwide-seo .head p {
    font-size: 18px;
    font-family: Inter;
    font-weight: 400;
    line-height: 24px;
    color: #515151;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.why-choose-nationwide-seo .content-area {
    padding: 20px 0 0 0;
}

.why-choose-nationwide-seo .content-area h3 {
    font-family: Inter;
    font-weight: 800;
    font-size: 24px;
    color: #000;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.why-choose-nationwide-seo .content-area p {
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    color: #515151;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.nationwide-seo-social-media-ads .heading div.title , .nationwide-seo-social-media-ads .heading h2 {
    font-family: Inter;
    margin-bottom: 16px;
    font-size: 48px;
    letter-spacing: -2px;
    font-weight: 900;
    line-height: 54px;
    background: -webkit-linear-gradient(left, #3978ac 30%, #00a14b 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nationwide-seo-social-media-ads .heading p {
    font-size: 18px;
    font-family: Inter;
    font-weight: 500;
    letter-spacing: -1px;
    line-height: 20px;
    margin-bottom: 32px;
    color: #262626;
    letter-spacing: -1px;
    margin-bottom: 40px;
}

.nationwide-seo-social-media-ads .card {
    margin: 10px;
    display: inline-block;
    position: relative;
    width: 350px;
    height: 420px;
    opacity: 0.85;
}

.back,
.nationwide-seo-social-media-ads .front {
    width: 100%;
    height: 100%;
    position: absolute;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
    border-radius: 0;
}

.nationwide-seo-social-media-ads .front-one {
    transform: rotateY(0);
    background-image: url(../../../nJwaBs__P2JfMUeYJ4vmjQ/de9d08ce-7c9b-4c2c-cb21-126cc80f0800/public);
    background-size: cover;
    background-position: bottom;
    text-align: center;
    padding: 30px;
}

.nationwide-seo-social-media-ads .back-one {
    background: #000;
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    padding: 30px 25px !important;
    color: #fff;
}

.nationwide-seo-social-media-ads .card:hover .front-one {
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
}

.nationwide-seo-social-media-ads .card:hover .back-one {
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
}

.nationwide-seo-social-media-ads .front-two {
    transform: rotateY(0);
    background-image: url(../../../nJwaBs__P2JfMUeYJ4vmjQ/4839e5b1-afd5-47bb-90de-4fafaf524500/public);
    background-size: cover;
    background-position: bottom;
    text-align: center;
    padding: 30px;
}

.nationwide-seo-social-media-ads .back-two {
    background: #000;
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    padding: 30px 25px !important;
    color: #fff;
}

.nationwide-seo-social-media-ads .card:hover .front-two {
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
}

.nationwide-seo-social-media-ads .card:hover .back-two {
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
}

.nationwide-seo-social-media-ads .front-three {
    transform: rotateY(0);
    background-image: url(../../../nJwaBs__P2JfMUeYJ4vmjQ/38a7cd5e-d455-481a-b3b7-f1fff2f6a500/public);
    background-size: cover;
    background-position: bottom;
    text-align: center;
    padding: 30px;
}

.nationwide-seo-social-media-ads .back-three {
    background: #000;
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    padding: 30px 25px !important;
    color: #fff;
}

.nationwide-seo-social-media-ads .card:hover .front-three {
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
}

.nationwide-seo-social-media-ads .card:hover .back-three {
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
}

.nationwide-seo-social-media-ads .front-four {
    transform: rotateY(0);
    background-image: url(../../../nJwaBs__P2JfMUeYJ4vmjQ/9695f383-f1bc-4ac1-3d12-08dd8ac66400/public);
    background-size: cover;
    background-position: bottom;
    text-align: center;
    padding: 30px;
}

.nationwide-seo-social-media-ads .back-four {
    background: #000;
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    padding: 30px 25px !important;
    color: #fff;
}

.nationwide-seo-social-media-ads .card:hover .front-four {
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
}

.nationwide-seo-social-media-ads .card:hover .back-four {
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
}

.nationwide-seo-social-media-ads .front-five {
    transform: rotateY(0);
    background-image: url(../../../nJwaBs__P2JfMUeYJ4vmjQ/bf1352a0-1202-4d4a-4dd4-ee3405d1d600/public);
    background-size: cover;
    background-position: bottom;
    text-align: center;
    padding: 30px;
}

.nationwide-seo-social-media-ads .back-five {
    background: #000;
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    padding: 30px 25px !important;
    color: #fff;
}

.nationwide-seo-social-media-ads .card:hover .front-five {
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
}

.nationwide-seo-social-media-ads .card:hover .back-five {
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
}

.nationwide-seo-social-media-ads .front-six {
    transform: rotateY(0);
    background-image: url(../../../nJwaBs__P2JfMUeYJ4vmjQ/e6821f2d-8a29-471b-f7bd-607dd1aff600/public);
    background-size: cover;
    background-position: bottom;
    text-align: center;
    padding: 30px;
}

.nationwide-seo-social-media-ads .back-six {
    background: #000;
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    padding: 30px 25px !important;
    color: #fff;
}

.nationwide-seo-social-media-ads .card:hover .front-six {
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
}

.nationwide-seo-social-media-ads .card:hover .back-six {
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
}

.nationwide-seo-social-media-ads .front {
    padding: 70px 30px;
}

.nationwide-seo-social-media-ads .front h4 {
    font-family: Inter;
    text-align: left !important;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0;
}

.nationwide-seo-social-media-ads .front p {
    font-family: Inter;
    text-align: left !important;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 25px;
    line-height: 20px;
}

.nationwide-seo-social-media-ads .back {
    padding: 12px 30px;
}

.nationwide-seo-social-media-ads .back h4 {
    text-align: left;
    margin-bottom: 4px;
    font-weight: 700;
    font-family: Inter;
    font-size: 16px;
}

.nationwide-seo-social-media-ads .back p {
    text-align: left;
    margin-bottom: 8px;
    font-size: 14px;
}

.nationwide-seo-social-media-ads .back a {
    text-align: left;
    margin-bottom: 8px;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

.nationwide-seo-social-media-ads .back .btn-danger {
    background-color: transparent;
    border: 2px solid #fff;
    padding: 1px 16px;
    border-radius: 0;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
    width: 100%;
}

.nationwide-batting-blades .bg-img {
    background-image: url(../../../nJwaBs__P2JfMUeYJ4vmjQ/0cc972f4-411b-4aa6-5070-0ec8be515400/public);
    background-repeat: no-repeat;
    background-size: 128%;
    background-position: center;
    width: 100%;
    height: 80vh;
}

.nationwide-batting-blades .heading {
    margin-top: 30px;
    margin-left: 100px;
}

.nationwide-batting-blades .slider-paragraph p {
    margin-left: 50px;
    padding: 0 150px 50px 30px;
}

.ecommerce-batting-blades .swiper-button-next,
.nationwide-batting-blades .swiper-button-prev {
    margin-top: -50px;
}

.nationwide-batting-blades .heading h5 {
    font-family: Inter;
    font-size: 20px;
    font-weight: 700;
    color: #000;
}

.nationwide-batting-blades .heading h2 {
    font-family: Inter;
    margin-bottom: 16px;
    font-size: 48px;
    letter-spacing: -2px;
    font-weight: 900;
    line-height: 60px;
    background: -webkit-linear-gradient(left, #3978ac 10%, #01a04d 40%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nationwide-batting-blades .bg-numbers {
    background-image: url(../images/bg-numbers.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 25vh;
}

.nationwide-batting-blades .bg-numbers .num-blades {
    padding: 24px 0;
}

.nationwide-batting-blades .bg-numbers .num-blades h3 {
    color: #fff;
    font-family: Inter;
    font-weight: 900;
    font-size: 50px;
}

.nationwide-batting-blades .bg-numbers .num-blades p {
    color: #fff;
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
}

.nationwide-seo-min-strategy {
    background-image: url(../../../nJwaBs__P2JfMUeYJ4vmjQ/3831a5c5-2e79-4db8-391f-fc12e858eb00/public);
    background-repeat: no-repeat;
    background-position: 6% 100%;
    background-size: contain;
    margin-top: -60px;
}

.nationwide-seo-min-strategy .text-area {
    padding: 140px 0 20px 0;
}

.nationwide-seo-min-strategy .text-area h1 {
    font-size: 40px;
    font-family: Inter;
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 42px;
    margin-bottom: 40px !important;
    color: #262626;
}

.nationwide-seo-min-strategy .text-area h1 span {
    font-family: Inter;
    margin-bottom: 6px;
    font-size: 38px;
    letter-spacing: -2px;
    font-weight: 900;
    line-height: 40px;
    background: -webkit-linear-gradient(left, #3978ac 30%, #00a14b 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nationwide-seo-min-strategy .text-area .btn-live-chat {
    background: #d00202;
    text-decoration: none;
    color: #fff;
    padding: 1px 32px;
    font-size: 15px;
    font-family: Inter;
    margin-right: 16px;
    border-radius: 0;
    outline: 0;
    border: none;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: normal;
    margin-top: 15px;
}

.nationwide-seo-min-strategy .min-strategy-form {
    background-color: #fff !important;
    padding: 20px 25px;
    width: 85%;
    margin: 0 auto;
    margin-top: 75px;
    border-radius: 0;
    box-shadow: 2px 2px 30px #888;
}

.nationwide-seo-min-strategy .min-strategy-form label {
    color: #000;
    font-size: 16px;
    font-weight: 700;
    padding: 0 0;
    letter-spacing: -1px;
}

.nationwide-seo-min-strategy .min-strategy-form ::placeholder {
    color: #888;
    font-size: 13px;
    letter-spacing: -1px;
}

.nationwide-seo-min-strategy .min-strategy-form input {
    background-color: transparent;
    font-size: 12px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #888;
    border-radius: 0;
    color: #000;
    padding: 1px 0;
}

.nationwide-seo-min-strategy .min-strategy-form input:focus {
    background-color: transparent;
    font-size: 14px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    border-radius: 0;
}

.nationwide-seo-min-strategy .min-strategy-form .btn {
    background-image: linear-gradient(to right, #069647, #05522a);
    width: 100%;
    outline: 0;
    border: none;
    font-size: 17px;
    font-weight: 600;
    font-family: Inter;
    letter-spacing: -1px;
    border-radius: 0;
    outline: 0;
    border: none;
}

.nationwide-seo-min-strategy .heading h3 {
    color: #000 !important;
    font-size: 32px;
    font-family: Inter;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 0;
    background: unset;
    -webkit-text-fill-color: unset;
}

.nationwide-seo-min-strategy .text-side h3 {
    font-family: Inter;
    font-weight: 900;
    font-size: 28px;
    margin-bottom: 18px;
    background: -webkit-linear-gradient(left, #743bbc 10%, #0f9bcc 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ecoomerce-seo-min-strategy .text-side .col-md-4,
.nationwide-seo-min-strategy .text-side .col-md-3 {
    margin: 2px 0 7px 0;
}

.nationwide-seo-min-strategy .text-side .d-flex h5 {
    font-family: Inter;
    font-weight: 900;
    font-size: 15px;
    color: #000;
}

.nationwide-seo-min-strategy .text-side2 {
    margin: 18px 0;
}

.nationwide-seo-min-strategy .text-side2 p {
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    color: #2f2f2f;
    margin-bottom: 14px;
}

.nationwide-seo-min-strategy .text-side2 h5 {
    font-family: Inter;
    font-weight: 900;
    font-size: 20px;
    color: #000;
}

.nationwide-seo-min-strategy .text-side2 h5 span {
    font-family: Inter;
    font-weight: 900;
    font-size: 20px;
    color: #36a1d5;
}

.nationwide-seo-faq {
    padding: 60px 0;
}

.nationwide-seo-faq .section-title h2 {
    font-family: Inter;
    margin-bottom: 6px;
    font-size: 50px;
    letter-spacing: -2px;
    font-weight: 900;
    line-height: 55px;
    background: -webkit-linear-gradient(left, #3978ac 30%, #00a14b 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 30px;
}

.nationwide-seo-faq .faq-list {
    padding: 0 70px;
}

.nationwide-seo-faq .faq-list ul {
    padding: 0;
    list-style: none;
}

.nationwide-seo-faq .faq-list li+li {
    margin-top: 15px;
}

.nationwide-seo-faq .faq-list li {
    padding: 20px 0;
    background-color: #2b2b2b;
    position: relative;
    padding: 12px 32px;
    border-radius: 10px;
    width: 800px;
    margin: 0 auto;
}

.nationwide-seo-faq .faq-list a {
    display: block;
    position: relative;
    font-family: 'Inter', sans-serif !important;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    padding: 0;
    outline: 0;
    cursor: pointer;
    color: #fff;
}

.nationwide-seo-faq .faq-list a:hover {
    display: block;
    position: relative;
    font-family: 'Inter', sans-serif !important;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    padding: 0;
    outline: 0;
    cursor: pointer;
    color: #fff;
}

.nationwide-seo-faq .faq-list .icon-show,
.social-ppc-faq .faq-list .icon-close {
    font-size: 24px;
    position: absolute;
    right: 0;
    top: 0;
    color: #fff;
}

.nationwide-seo-faq .faq-list p {
    margin-bottom: 0;
    padding: 10px 0 0 0;
    font-size: 13px;
    color: #fff;
}

.nationwide-seo-faq .faq-list .icon-show {
    display: none;
}

.nationwide-seo-faq .faq-list a.collapsed {
    color: #fff;
}

.nationwide-seo-faq .faq-list a.collapsed .icon-show {
    display: inline-block;
    font-size: 16px;
    margin-top: 4px;
}

.nationwide-seo-faq .faq-list .fa-chevron-up:before {
    font-size: 16px;
    margin-top: 4px;
}

.nationwide-seo-faq .faq-list a.collapsed .icon-close {
    display: none;
}

@media screen and (max-width: 626px) {
    .nationwide-hero {
        height: auto;
        background-image: unset;
        margin-top: 30px;
    }

    .nationwide-hero .text-area {
        margin-top: 65px;
    }

    .nationwide-hero .text-area div.title , .nationwide-hero .text-area h1 {
        font-size: 25px;
        line-height: 32px;
    }
    .nationwide-hero .text-area div.title br , .nationwide-hero .text-area h1 br {
        display: none;
    }
    .nationwide-hero .text-area br {
        display: none;
    }

    .nationwide-hero .text-area p {
        padding-right: 0 !important;
    }

    .nationwide-hero .ecommerce-hero-form {
        margin: 0 auto;
        width: 95%;
    }

    .ecommerce-numbers {
        margin-top: 0;
    }

    .ecommerce-numbers .counter-box p {
        margin-top: 0;
        letter-spacing: 0;
    }

    .ecommerce-numbers .firstchild {
        margin-bottom: 20px;
    }

    .ecommerce-numbers .firstchild .numbers-img {
        margin-left: 95px;
    }

    .ecommerce-numbers .counter-box {
        border-left: none;
        margin-bottom: 20px;
    }

    .seo-updated-ppc-questions .questions .img6 {
        top: 0;
    }

    .seo-updated-ppc-questions .heading2 .btn {
        font-size: 12px;
        padding: 2px 16px;
    }

    .seo-updated-ppc-questions .heading2 h3 {
        font-size: 26px;
        margin-top: 25px;
    }

    .nationwide-seo-clients .text-area h3 {
        font-size: 32px;
        line-height: 36px;
    }

    .nationwide-seo-clients .map-img img {
        max-width: 360px;
    }

    .nationwide-seo-clients .btn-live-chat {
        width: 220px;
    }

    .nationwide-seo-pricing .heading h2 {
        font-size: 30px;
        line-height: 30px;
    }

    .nationwide-seo-pricing .heading h2 br {
        display: none;
    }

    .seo-updated-ppc-questions .heading h2 {
        font-size: 30px;
        line-height: 32px;
    }

    .nationwide-seo-pricing nav {
        display: block !important;
    }

    .nationwide-seo-pricing ul#myTab {
        width: 200px;
    }

    .nationwide-seo-pricing li.nav-item {
        margin: 0 auto;
    }

    .nationwide-seo-pricing .tab-pane .d-flex {
        display: block !important;
    }

    .nationwide-seo-pricing .tab-pane .d-flex .table-1 {
        margin-bottom: 120px;
    }

    .nationwide-seo-pricing #myTabContent .table-1,
    .social-ppc-pricing #myTabContent .table-2,
    .social-ppc-pricing #myTabContent .table-3 {
        width: 312px;
        margin-bottom: 24px;
    }

    .seo-tabs .ser1 p,
    .seo-tabs .ser2 p,
    .seo-tabs .ser3 p {
        text-align: left !important;
    }

    .seo-updated-ppc-choose .head h2 {
        font-size: 40px;
    }

    .seo-updated-ppc-choose .heading h3 {
        font-size: 30px;
        line-height: 30px;
    }

    .seo-updated-ppc-choose .btn-folks {
        margin-right: 15px;
    }

    .seo-updated-ppc-choose .img-wrapper h2 {
        font-size: 22px;
        margin-top: 16px;
    }

    .seo-updated-ppc-choose .img-wrapper img {
        max-width: 320px;
        height: auto;
    }

    .seo-ppc-social-media-ads .heading h3 {
        font-size: 32px;
        line-height: 38px;
    }

    .seo-ppc-social-media-ads .heading h3 br {
        display: none;
    }

    .seo-ppc-min-strategy .text-area .btn-live-chat {
        padding: 2px 10px;
        font-size: 14px;
    }

    .seo-ppc-social-media-ads .heading h3 {
        font-size: 28px;
    }

    .nationwide-seo-faq .section-title h2 {
        font-size: 34px;
        line-height: 40px;
    }

    .nationwide-seo-faq .faq-list {
        padding: 0 !important;
    }

    .nationwide-seo-clients .one {
        position: absolute;
        top: 100px;
        left: 250px;
        color: #5cc004;
        font-size: 25px;
        color: #fff;
    }

    .nationwide-seo-clients .two {
        position: absolute;
        bottom: 90px;
        left: 200px;
        color: #5cc004;
        font-size: 25px;
        color: #fff;
    }

    .nationwide-seo-clients .three {
        position: absolute;
        top: 100px;
        left: 50px;
        color: #5cc004;
        font-size: 25px;
        color: #fff;
    }

    .nationwide-seo-clients .four {
        position: absolute;
        top: 20px;
        left: 80px;
        color: #5cc004;
        font-size: 25px;
        color: #fff;
    }

    .nationwide-seo-clients .five {
        position: absolute;
        bottom: 110px;
        right: 190px;
        color: #5cc004;
        font-size: 25px;
        color: #fff;
    }

    .nationwide-seo-clients .six {
        position: absolute;
        bottom: 200px;
        left: 20px;
        color: #5cc004;
        font-size: 25px;
        color: #fff;
    }

    .nationwide-seo-clients .seven {
        position: absolute;
        bottom: 180px;
        right: 240px;
        color: #5cc004;
        font-size: 25px;
        color: #fff;
    }

    .nationwide-seo-clients .eight {
        position: absolute;
        bottom: 120px;
        left: 100px;
        color: #5cc004;
        font-size: 25px;
        color: #fff;
    }

    .nationwide-seo-clients .nine {
        position: absolute;
        bottom: 480px;
        left: 520px;
        color: #5cc004;
        font-size: 25px;
        color: #fff;
    }

    .nationwide-seo-clients .ten {
        position: absolute;
        bottom: 200px;
        left: 180px;
        color: #5cc004;
        font-size: 25px;
        color: #fff;
    }

    .nationwide-seo-clients .eleven {
        position: absolute;
        bottom: 146px;
        left: 200px;
        color: #5cc004;
        font-size: 25px;
        color: #fff;
    }

    .nationwide-seo-clients .twelve {
        position: absolute;
        bottom: 380px;
        left: 125px;
        color: #5cc004;
        font-size: 25px;
        color: #fff;
    }

    .nationwide-seo-clients .thirteen {
        position: absolute;
        bottom: 300px;
        left: 920px;
        color: #5cc004;
        font-size: 25px;
        color: #fff;
    }

    .nationwide-seo-clients .fourteen {
        position: absolute;
        bottom: 450px;
        left: 720px;
        color: #5cc004;
        font-size: 25px;
        color: #fff;
    }

    .nationwide-seo-clients .fifteen {
        position: absolute;
        bottom: 610px;
        left: 1140px;
        color: #5cc004;
        font-size: 25px;
        color: #fff;
    }

    .why-do-nationwide .img-wrapper img {
        max-width: 300px;
    }

    .why-do-nationwide .heading div.title , .why-do-nationwide .heading h2 {
        font-size: 32px;
        line-height: 34px;
    }

    .why-do-nationwide .heading div.title br , .why-do-nationwide .heading h2 br {
        display: none;
    }

    .why-choose-nationwide-seo .head h2 {
        font-size: 32px;
        line-height: 34px;
    }

    .why-choose-nationwide-seo .head h2 br {
        display: none;
    }

    .nationwide-seo-social-media-ads .heading div.title , .nationwide-seo-social-media-ads .heading h2 {
        font-size: 32px;
        line-height: 34px;
    }

    .nationwide-seo-social-media-ads .heading div.title br , .nationwide-seo-social-media-ads .heading h2 br {
        display: none;
    }

    .nationwide-seo-social-media-ads .card {
        max-width: 100%;
        display:flex;
        margin:auto;
    }

    .nationwide-batting-blades .bg-numbers {
        height: auto;
    }

    .nationwide-batting-blades .slider-paragraph p {
        margin: 0;
        padding: 20px;
    }

    .nationwide-batting-blades .heading {
        margin: 0;
    }

    .ecommerce-batting-blades .swiper-button-next,
    .nationwide-batting-blades .swiper-button-prev {
        display: none;
    }

    .nationwide-seo-min-strategy .text-area h1 {
        font-size: 32px;
        line-height: 36px;
        letter-spacing: -1px;
    }

    .nationwide-seo-min-strategy .text-area h1 br {
        display: none;
    }

    .nationwide-seo-min-strategy .text-area .btn-live-chat {
        padding: 1px 12px;
        font-size: 13px;
    }

    .nationwide-seo-min-strategy .heading h3 {
        font-size: 24px;
        letter-spacing: -1px;
    }

    .nationwide-seo-faq .faq-list li {
        width: 310px;
        padding: 10px 15px;
    }

    .nationwide-hero .text-area .btn-live-chat {
        padding: 0 45px;
        margin-left: 10px;
    }
}

.wrapper-2 {
    font-size: 30px;
    position: relative;
    bottom: 620px;
    width: 6px;
    left: 512px !important;
    color: #fff;
}

.showtooltip {
    opacity: 1;
}

.wrapper-2 .tooltip p {
    font-size: 14px;
    font-family: Inter;
    font-weight: 500;
    position: absolute;
    top: 30%;
    right: 10%;
    max-width: 300px;
    color: #fff;
}

.wrapper-2 .tooltip span {
    font-size: 14px;
    font-family: Inter;
    font-weight: 500;
    position: absolute;
    top: 65%;
    right: 55%;
    max-width: 300px;
    color: #fff;
}

.wrapper-2 .tooltip {
    background: url(../2_.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    bottom: 75%;
    left: 0;
    height: 250px;
    width: 400px;
    pointer-events: none;
    position: absolute;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: all 0.25s ease-out;
    -moz-transition: all 0.25s ease-out;
    -ms-transition: all 0.25s ease-out;
    -o-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
}

.wrapper-2:hover .tooltip {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.lte8 .wrapper-2 .tooltip {
    display: none;
}

.lte8 .wrapper-2:hover .tooltip {
    display: block;
}

.wrapper-3 {
    font-size: 30px;
    position: relative;
    bottom: 650px;
    width: 6px;
    left: 300px;
    color: #fff;
}

.wrapper-3 .tooltip p {
    font-size: 14px;
    font-family: Inter;
    font-weight: 500;
    position: absolute;
    top: 30%;
    right: 10%;
    max-width: 300px;
    color: #fff;
}

.wrapper-3 .tooltip span {
    font-size: 14px;
    font-family: Inter;
    font-weight: 500;
    position: absolute;
    top: 65%;
    right: 50%;
    max-width: 300px;
    color: #fff;
}

.wrapper-3 .tooltip {
    background: url(../2_.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    bottom: 75%;
    left: 0;
    height: 250px;
    width: 400px;
    pointer-events: none;
    position: absolute;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: all 0.25s ease-out;
    -moz-transition: all 0.25s ease-out;
    -ms-transition: all 0.25s ease-out;
    -o-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
}

.wrapper-3:hover .tooltip {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.lte8 .wrapper-3 .tooltip {
    display: none;
}

.lte8 .wrapper-3:hover .tooltip {
    display: block;
}

.wrapper-4 {
    font-size: 30px;
    position: relative;
    bottom: 620px;
    width: 6px;
    left: 190px;
    color: #fff;
}

.wrapper-4 .tooltip p {
    font-size: 14px;
    font-family: Inter;
    font-weight: 500;
    position: absolute;
    top: 30%;
    right: 10%;
    max-width: 300px;
    color: #fff;
}

.wrapper-4 .tooltip span {
    font-size: 14px;
    font-family: Inter;
    font-weight: 500;
    position: absolute;
    top: 65%;
    right: 43%;
    max-width: 300px;
    color: #fff;
}

.wrapper-4 .tooltip {
    background: url(../2_.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    bottom: 75%;
    left: 0;
    height: 250px;
    width: 400px;
    pointer-events: none;
    position: absolute;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: all 0.25s ease-out;
    -moz-transition: all 0.25s ease-out;
    -ms-transition: all 0.25s ease-out;
    -o-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
}

.wrapper-4:hover .tooltip {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.lte8 .wrapper-4 .tooltip {
    display: none;
}

.lte8 .wrapper-4:hover .tooltip {
    display: block;
}

.wrapper-5 {
    font-size: 30px;
    position: relative;
    bottom: 600px;
    width: 6px;
    left: 300px;
    color: #fff;
}

.wrapper-5 .tooltip p {
    font-size: 14px;
    font-family: Inter;
    font-weight: 500;
    position: absolute;
    top: 30%;
    right: 10%;
    max-width: 300px;
    color: #fff;
}

.wrapper-5 .tooltip span {
    font-size: 14px;
    font-family: Inter;
    font-weight: 500;
    position: absolute;
    top: 65%;
    right: 50%;
    max-width: 300px;
    color: #fff;
}

.wrapper-5 .tooltip {
    background: url(../2_.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    bottom: 75%;
    left: 0;
    height: 250px;
    width: 400px;
    pointer-events: none;
    position: absolute;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: all 0.25s ease-out;
    -moz-transition: all 0.25s ease-out;
    -ms-transition: all 0.25s ease-out;
    -o-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
}

.wrapper-5:hover .tooltip {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.lte8 .wrapper-5 .tooltip {
    display: none;
}

.lte8 .wrapper-5:hover .tooltip {
    display: block;
}

.wrapper-6 {
    font-size: 30px;
    position: relative;
    bottom: 500px;
    width: 6px;
    left: 450px;
    color: #fff;
}

.wrapper-6 .tooltip p {
    font-size: 14px;
    font-family: Inter;
    font-weight: 500;
    position: absolute;
    top: 30%;
    right: 10%;
    max-width: 300px;
    color: #fff;
}

.wrapper-6 .tooltip span {
    font-size: 14px;
    font-family: Inter;
    font-weight: 500;
    position: absolute;
    top: 65%;
    right: 50%;
    max-width: 300px;
    color: #fff;
}

.wrapper-6 .tooltip {
    background: url(../2_.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    bottom: 75%;
    left: 0;
    height: 250px;
    width: 400px;
    pointer-events: none;
    position: absolute;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: all 0.25s ease-out;
    -moz-transition: all 0.25s ease-out;
    -ms-transition: all 0.25s ease-out;
    -o-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
}

.wrapper-6:hover .tooltip {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.lte8 .wrapper-6:hover .tooltip {
    display: none;
}

.lte8 .wrapper-6:hover .tooltip {
    display: block;
}

.wrapper-8 {
    font-size: 30px;
    position: relative;
    bottom: 550px;
    width: 6px;
    left: 560px;
    color: #fff;
}

.wrapper-8 .tooltip p {
    font-size: 14px;
    font-family: Inter;
    font-weight: 500;
    position: absolute;
    top: 30%;
    right: 10%;
    max-width: 300px;
    color: #fff;
}

.wrapper-8 .tooltip span {
    font-size: 14px;
    font-family: Inter;
    font-weight: 500;
    position: absolute;
    top: 65%;
    right: 50%;
    max-width: 300px;
    color: #fff;
}

.wrapper-8 .tooltip {
    background: url(../2_.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    bottom: 75%;
    left: 0;
    height: 250px;
    width: 400px;
    pointer-events: none;
    position: absolute;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: all 0.25s ease-out;
    -moz-transition: all 0.25s ease-out;
    -ms-transition: all 0.25s ease-out;
    -o-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
}

.wrapper-8:hover .tooltip {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.lte8 .wrapper-8 .tooltip {
    display: none;
}

.lte8 .wrapper-8:hover .tooltip {
    display: block;
}

.wrapper-9 {
    font-size: 30px;
    position: relative;
    bottom: 1050px;
    width: 6px;
    left: 450px;
    color: #fff;
}

.wrapper-9 .tooltip p {
    font-size: 14px;
    font-family: Inter;
    font-weight: 500;
    position: absolute;
    top: 30%;
    right: 10%;
    max-width: 300px;
    color: #fff;
}

.wrapper-9 .tooltip span {
    font-size: 14px;
    font-family: Inter;
    font-weight: 500;
    position: absolute;
    top: 65%;
    right: 50%;
    max-width: 300px;
    color: #fff;
}

.wrapper-9 .tooltip {
    background: url(../2_.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    bottom: 75%;
    left: 0;
    height: 250px;
    width: 400px;
    pointer-events: none;
    position: absolute;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: all 0.25s ease-out;
    -moz-transition: all 0.25s ease-out;
    -ms-transition: all 0.25s ease-out;
    -o-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
}

.wrapper-9:hover .tooltip {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.lte8 .wrapper-9 .tooltip {
    display: none;
}

.lte8 .wrapper-9:hover .tooltip {
    display: block;
}

.wrapper-10 {
    font-size: 30px;
    position: relative;
    bottom: 850px;
    width: 6px;
    left: 750px;
    color: #fff;
}

.wrapper-10 .tooltip p {
    font-size: 14px;
    font-family: Inter;
    font-weight: 500;
    position: absolute;
    top: 30%;
    right: 10%;
    max-width: 300px;
    color: #fff;
}

.wrapper-10 .tooltip span {
    font-size: 14px;
    font-family: Inter;
    font-weight: 500;
    position: absolute;
    top: 65%;
    right: 50%;
    max-width: 300px;
    color: #fff;
}

.wrapper-10 .tooltip {
    background: url(../2_.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    bottom: 75%;
    left: 0;
    height: 250px;
    width: 400px;
    pointer-events: none;
    position: absolute;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: all 0.25s ease-out;
    -moz-transition: all 0.25s ease-out;
    -ms-transition: all 0.25s ease-out;
    -o-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
}

.wrapper-10:hover .tooltip {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.lte8 .wrapper-10 .tooltip {
    display: none;
}

.lte8 .wrapper-10:hover .tooltip {
    display: block;
}

.wrapper-11 {
    font-size: 30px;
    position: relative;
    bottom: 810px;
    width: 6px;
    left: 530px;
    color: #fff;
}

.wrapper-11 .tooltip p {
    font-size: 14px;
    font-family: Inter;
    font-weight: 500;
    position: absolute;
    top: 30%;
    right: 10%;
    max-width: 300px;
    color: #fff;
}

.wrapper-11 .tooltip span {
    font-size: 14px;
    font-family: Inter;
    font-weight: 500;
    position: absolute;
    top: 65%;
    right: 50%;
    max-width: 300px;
    color: #fff;
}

.wrapper-11 .tooltip {
    background: url(../2_.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    bottom: 75%;
    left: 0;
    height: 250px;
    width: 400px;
    pointer-events: none;
    position: absolute;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: all 0.25s ease-out;
    -moz-transition: all 0.25s ease-out;
    -ms-transition: all 0.25s ease-out;
    -o-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
}

.wrapper-11:hover .tooltip {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.lte8 .wrapper-11 .tooltip {
    display: none;
}

.lte8 .wrapper-11:hover .tooltip {
    display: block;
}

.wrapper-12 {
    font-size: 30px;
    position: relative;
    bottom: 800px;
    width: 6px;
    left: 850px;
    color: #fff;
}

.wrapper-12 .tooltip p {
    font-size: 14px;
    font-family: Inter;
    font-weight: 500;
    position: absolute;
    top: 30%;
    right: 10%;
    max-width: 300px;
    color: #fff;
}

.wrapper-12 .tooltip span {
    font-size: 14px;
    font-family: Inter;
    font-weight: 500;
    position: absolute;
    top: 65%;
    right: 50%;
    max-width: 300px;
    color: #fff;
}

.wrapper-12 .tooltip {
    background: url(../2_.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    bottom: 75%;
    left: 0;
    height: 250px;
    width: 400px;
    pointer-events: none;
    position: absolute;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: all 0.25s ease-out;
    -moz-transition: all 0.25s ease-out;
    -ms-transition: all 0.25s ease-out;
    -o-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
}

.wrapper-12:hover .tooltip {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.lte8 .wrapper-12 .tooltip {
    display: none;
}

.lte8 .wrapper-12:hover .tooltip {
    display: block;
}

.wrapper-13 {
    font-size: 30px;
    position: relative;
    bottom: 1100px;
    width: 6px;
    left: 150px;
    color: #fff;
}

.wrapper-13 .tooltip p {
    font-size: 14px;
    font-family: Inter;
    font-weight: 500;
    position: absolute;
    top: 30%;
    right: 10%;
    max-width: 300px;
    color: #fff;
}

.wrapper-13 .tooltip span {
    font-size: 14px;
    font-family: Inter;
    font-weight: 500;
    position: absolute;
    top: 65%;
    right: 50%;
    max-width: 300px;
    color: #fff;
}

.wrapper-13 .tooltip {
    background: url(../2_.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    bottom: 75%;
    left: 0;
    height: 250px;
    width: 400px;
    pointer-events: none;
    position: absolute;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: all 0.25s ease-out;
    -moz-transition: all 0.25s ease-out;
    -ms-transition: all 0.25s ease-out;
    -o-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
}

.wrapper-13:hover .tooltip {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.lte8 .wrapper-13 .tooltip {
    display: none;
}

.lte8 .wrapper-13:hover .tooltip {
    display: block;
}

.wrapper-14 {
    font-size: 30px;
    position: relative;
    bottom: 800px;
    width: 6px;
    left: 850px;
    color: #fff;
}

.wrapper-14 .tooltip p {
    font-size: 14px;
    font-family: Inter;
    font-weight: 500;
    position: absolute;
    top: 30%;
    right: 10%;
    max-width: 300px;
    color: #fff;
}

.wrapper-14 .tooltip span {
    font-size: 14px;
    font-family: Inter;
    font-weight: 500;
    position: absolute;
    top: 65%;
    right: 50%;
    max-width: 300px;
    color: #fff;
}

.wrapper-14 .tooltip {
    background: url(../2_.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    bottom: 75%;
    left: 0;
    height: 250px;
    width: 400px;
    pointer-events: none;
    position: absolute;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: all 0.25s ease-out;
    -moz-transition: all 0.25s ease-out;
    -ms-transition: all 0.25s ease-out;
    -o-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
}

.wrapper-14:hover .tooltip {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.lte8 .wrapper-14 .tooltip {
    display: none;
}

.lte8 .wrapper-14:hover .tooltip {
    display: block;
}

.wrapper-15 {
    font-size: 30px;
    position: relative;
    bottom: 900px;
    width: 6px;
    left: 650px;
    color: #fff;
}

.wrapper-15 .tooltip p {
    font-size: 14px;
    font-family: Inter;
    font-weight: 500;
    position: absolute;
    top: 30%;
    right: 10%;
    max-width: 300px;
    color: #fff;
}

.wrapper-15 .tooltip span {
    font-size: 14px;
    font-family: Inter;
    font-weight: 500;
    position: absolute;
    top: 65%;
    right: 50%;
    max-width: 300px;
    color: #fff;
}

.wrapper-15 .tooltip {
    background: url(../2_.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    bottom: 75%;
    left: 0;
    height: 250px;
    width: 400px;
    pointer-events: none;
    position: absolute;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: all 0.25s ease-out;
    -moz-transition: all 0.25s ease-out;
    -ms-transition: all 0.25s ease-out;
    -o-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
}

.wrapper-15:hover .tooltip {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.lte8 .wrapper-15 .tooltip {
    display: none;
}

.lte8 .wrapper-15:hover .tooltip {
    display: block;
}

.wrapper-16 {
    font-size: 30px;
    position: relative;
    bottom: 800px;
    width: 6px;
    left: 850px;
    color: #fff;
}

.wrapper-16 .tooltip p {
    font-size: 14px;
    font-family: Inter;
    font-weight: 500;
    position: absolute;
    top: 30%;
    right: 10%;
    max-width: 300px;
    color: #fff;
}

.wrapper-16 .tooltip span {
    font-size: 14px;
    font-family: Inter;
    font-weight: 500;
    position: absolute;
    top: 65%;
    right: 50%;
    max-width: 300px;
    color: #fff;
}

.wrapper-16 .tooltip {
    background: url(../2_.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    bottom: 75%;
    left: 0;
    height: 250px;
    width: 400px;
    pointer-events: none;
    position: absolute;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: all 0.25s ease-out;
    -moz-transition: all 0.25s ease-out;
    -ms-transition: all 0.25s ease-out;
    -o-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
}

.wrapper-16:hover .tooltip {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.lte8 .wrapper-16 .tooltip {
    display: none;
}

.lte8 .wrapper-16:hover .tooltip {
    display: block;
}

@media screen and (max-width: 800px) {
    .seo-updated-ppc-clients .map-img img {
        max-width: 350px;
    }

    .wrapper-2 {
        font-size: 25px;
        position: relative;
        bottom: 170px;
        width: 6px;
        left: 100px !important;
        color: #fff;
    }

    .wrapper-2 .tooltip {
        width: 275px;
        height: 175px;
    }

    .wrapper-2 .tooltip p {
        width: 200px;
        font-weight: 400;
        font-size: 10px;
        right: 10%;
    }

    .wrapper-2 .tooltip span {
        font-size: 11px;
        right: 52%;
        top: 64%;
    }

    .wrapper-3 {
        font-size: 25px;
        position: relative;
        bottom: 200px;
        width: 6px;
        left: 150px !important;
        color: #fff;
    }

    .wrapper-3 .tooltip {
        width: 275px;
        height: 175px;
    }

    .wrapper-3 .tooltip p {
        width: 200px;
        font-weight: 400;
        font-size: 10px;
        right: 10%;
    }

    .wrapper-3 .tooltip span {
        font-size: 11px;
        right: 48%;
        top: 64%;
    }

    .wrapper-4 {
        font-size: 25px;
        position: relative;
        bottom: 190px;
        width: 6px;
        left: 170px !important;
        color: #fff;
    }

    .wrapper-4 .tooltip {
        width: 275px;
        height: 175px;
    }

    .wrapper-4 .tooltip p {
        width: 200px;
        font-weight: 400;
        font-size: 10px;
        right: 10%;
    }

    .wrapper-4 .tooltip span {
        font-size: 11px;
        right: 38%;
        top: 64%;
    }

    .wrapper-5 {
        font-size: 25px;
        position: relative;
        bottom: 300px;
        width: 6px;
        left: 50px !important;
        color: #fff;
    }

    .wrapper-5 .tooltip {
        width: 275px;
        height: 175px;
    }

    .wrapper-5 .tooltip p {
        width: 200px;
        font-weight: 400;
        font-size: 10px;
        right: 10%;
    }

    .wrapper-5 .tooltip span {
        font-size: 11px;
        right: 48%;
        top: 64%;
    }

    .wrapper-6 {
        font-size: 25px;
        position: relative;
        bottom: 380px;
        width: 6px;
        left: 80px !important;
        color: #fff;
    }

    .wrapper-6 .tooltip {
        width: 275px;
        height: 175px;
    }

    .wrapper-6 .tooltip p {
        width: 200px;
        font-weight: 400;
        font-size: 10px;
        right: 10%;
    }

    .wrapper-6 .tooltip span {
        font-size: 11px;
        right: 48%;
        top: 64%;
    }

    .wrapper-8 {
        font-size: 25px;
        position: relative;
        bottom: 450px;
        width: 6px;
        left: 40px !important;
        color: #fff;
    }

    .wrapper-8 .tooltip {
        width: 275px;
        height: 175px;
    }

    .wrapper-8 .tooltip p {
        width: 200px;
        font-weight: 400;
        font-size: 10px;
        right: 10%;
    }

    .wrapper-8 .tooltip span {
        font-size: 11px;
        right: 48%;
        top: 64%;
    }

    .wrapper-10 {
        font-size: 25px;
        position: relative;
        bottom: 450px;
        width: 6px;
        left: 200px !important;
        color: #fff;
    }

    .wrapper-10 .tooltip {
        width: 275px;
        height: 175px;
    }

    .wrapper-10 .tooltip p {
        width: 200px;
        font-weight: 400;
        font-size: 10px;
        right: 10%;
    }

    .wrapper-10 .tooltip span {
        font-size: 11px;
        right: 48%;
        top: 64%;
    }

    .wrapper-12 {
        font-size: 25px;
        position: relative;
        bottom: 550px;
        width: 6px;
        left: 170px;
        color: #fff;
    }

    .wrapper-12 .tooltip {
        width: 275px;
        height: 175px;
    }

    .wrapper-12 .tooltip p {
        width: 200px;
        font-weight: 400;
        font-size: 10px;
        right: 10%;
    }

    .wrapper-12 .tooltip span {
        font-size: 11px;
        right: 48%;
        top: 64%;
    }

    .wrapper-13 {
        font-size: 25px;
        position: relative;
        bottom: 30px;
        width: 6px;
        left: 300px;
        color: #fff;
    }

    .wrapper-13 .tooltip {
        width: 275px;
        height: 175px;
    }

    .wrapper-13 .tooltip p {
        width: 200px;
        font-weight: 400;
        font-size: 10px;
        right: 10%;
    }

    .wrapper-13 .tooltip span {
        font-size: 11px;
        right: 48%;
        top: 64%;
    }

    .wrapper-14 {
        font-size: 25px;
        position: relative;
        bottom: 800px;
        width: 6px;
        left: 850px;
        color: #fff;
    }

    .wrapper-14 .tooltip {
        width: 275px;
        height: 175px;
    }

    .wrapper-14 .tooltip p {
        width: 200px;
        font-weight: 400;
        font-size: 10px;
        right: 10%;
    }

    .wrapper-14 .tooltip span {
        font-size: 11px;
        right: 48%;
        top: 64%;
    }

    .wrapper-15 {
        font-size: 25px;
        position: relative;
        bottom: 640px;
        width: 6px;
        left: 125px;
        color: #fff;
    }

    .wrapper-15 .tooltip {
        width: 275px;
        height: 175px;
    }

    .wrapper-15 .tooltip p {
        width: 200px;
        font-weight: 400;
        font-size: 10px;
        right: 10%;
    }

    .wrapper-15 .tooltip span {
        font-size: 11px;
        right: 40%;
        top: 64%;
    }

    .wrapper-16 {
        font-size: 25px;
        position: relative;
        bottom: 800px;
        width: 6px;
        left: 850px;
        color: #fff;
    }

    .wrapper-16 .tooltip {
        width: 275px;
        height: 175px;
    }

    .wrapper-16 .tooltip p {
        width: 200px;
        font-weight: 400;
        font-size: 10px;
        right: 10%;
    }

    .wrapper-16 .tooltip span {
        font-size: 11px;
        right: 48%;
        top: 64%;
    }

    .wrapper-8 .tooltip {
        width: 275px;
        height: 175px;
    }

    .wrapper-8 .tooltip p {
        width: 200px;
        font-weight: 400;
        font-size: 10px;
        right: 10%;
    }

    .wrapper-8 .tooltip span {
        font-size: 11px;
        right: 50%;
        top: 64%;
    }
}

.social-choose-us .mt-5 {
    margin-top: 100px !important;
}

.social-choose-us .col-md--2-two .box-one {
    background-color: transparent;
    border-style: solid;
    border-width: 2px;
    border-image: linear-gradient(to top, #78338d, #e01775) 1;
    padding: 36px 12px !important;
    width: 130px;
    height: 145px;
    margin: 16px 10px;
    box-shadow: 2px 2px 20px #ccc;
}

.social-choose-us .col-md--2-two .box-two {
    background-color: transparent;
    border-style: solid;
    border-width: 2px;
    border-image: linear-gradient(to top, #78338d, #e01775) 1;
    padding: 36px 12px !important;
    width: 130px;
    height: 145px;
    margin: 16px 10px;
    box-shadow: 2px 2px 20px #ccc;
}

.social-choose-us .threee .box-one {
    background-color: transparent;
    border-style: solid;
    border-width: 2px;
    border-image: linear-gradient(to top, #78338d, #e01775) 1;
    padding: 26px 12px !important;
    width: 130px;
    height: 145px;
    margin: 16px 10px;
    box-shadow: 2px 2px 20px #ccc;
}

.social-choose-us .box-one {
    background-color: transparent;
    border-style: solid;
    border-width: 2px;
    border-image: linear-gradient(to top, #78338d, #e01775) 1;
    padding: 26px 12px;
    width: 130px;
    height: 145px;
    margin: 16px 10px;
    box-shadow: 2px 2px 20px #ccc;
}

.social-choose-us .box-one img {
    margin-bottom: 6px;
    max-width: 48px;
}

.social-choose-us .box-one h6 {
    font-family: Inter;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    line-height: 20px;
}

.social-choose-us .box-one:hover h6 {
    color: #fff;
}

.social-choose-us .box-one:hover {
    background: linear-gradient(to right, #78338d, #e01775);
}

.social-choose-us .box-one .off {
    display: none;
}

.social-choose-us .box-one:hover .off {
    display: block;
    margin-left: 26px;
}

.social-choose-us .box-one:hover .on {
    display: none;
}

.social-choose-us .box-two .off {
    display: none;
}

.social-choose-us .box-two:hover .off {
    display: block;
    margin-left: 26px;
}

.social-choose-us .box-two:hover .on {
    display: none;
}

.social-choose-us .col-md--2-two {
    margin-top: -100px;
}

.social-choose-us .box-two {
    background-color: transparent;
    border-style: solid;
    border-width: 2px;
    border-image: linear-gradient(to top, #78338d, #e01775) 1;
    padding: 28px 12px;
    width: 130px;
    height: 145px;
    margin: 16px 10px;
    box-shadow: 2px 2px 20px #ccc;
}

.social-choose-us .box-two img {
    margin-bottom: 6px;
    max-width: 48px;
}

.social-choose-us .box-two h6 {
    font-family: Inter;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    line-height: 20px;
}

.social-choose-us .box-two:hover h6 {
    color: #fff;
}

.social-choose-us .box-two:hover {
    background: linear-gradient(to right, #78338d, #e01775);
}

.social-ppc-questions .questions-mbl {
    display: none;
}

.social-ppc-clients #carouselExampleControls {
    display: none;
}

#carouselExampleControls {
    display: none;
}

.carousel-item p {
    font-size: 14px;
    font-weight: 500;
    font-family: Inter;
    color: #fff;
    width: 80%;
    font-weight: 400;
    font-size: 12px;
    margin-left: 40px;
    margin-top: 48px;
    text-align: justify;
}

.carousel-item.active {
    background-color: red;
    background: url(../2_mbl.png);
    background-repeat: no-repeat;
    background-size: 106% 106%;
    background-position: bottom;
    margin-top: 30px;
    height: 270px;
}

.carousel-item h6 {
    font-size: 15px;
    color: #fff;
    font-weight: 700;
    text-align: left;
    left: "Inter";
    margin-left: 80px;
    margin-top: 15px;
}

#carouselExampleControls .carousel-inner {
    height: auto;
}

@media (max-width: 768px) {
    .webcontent-ppc-clients .map-img {
        display: none;
    }

    #carouselExampleControls {
        display: block;
    }

    .webcontent-ppc-clients .text-area h3 {
        margin-bottom: 12px;
        line-height: 40px;
    }

    .carousel-item.test.active p {
        font-family: Inter;
        color: #fff;
        width: 86%;
        font-weight: 400;
        font-size: 12px;
        margin-left: 40px;
        margin-top: 75px;
        text-align: justify;
    }

    .carousel-item.test.active h6 {
        font-size: 15px;
        color: #fff;
        font-weight: 700;
        text-align: left;
        left: "Inter";
        margin-left: 71px;
        margin-top: 60px;
    }
}

@media (max-width: 768px) {
    .social-choose-us .d-flex {
        display: block !important;
        margin: 0 auto !important;
    }

    .social-choose-us .col-md--2-two {
        margin: 0 !important;
        margin-top: -320px !important;
        margin-left: 170px !important;
    }

    .social-choose-us .threee .box-two {
        margin-left: 180px !important;
        margin-top: -160px !important;
    }

    .social-media-ppc-hero .text-area .btn-danger {
        width: 320px;
    }

    .social-media-ppc-hero .heading h3 {
        font-size: 26px;
    }

    .social-media-ppc-hero .social-media-ppc-hero-form input {
        padding: 0 !important;
    }

    .ser1 .heading2,
    .ser2 .heading2,
    .ser3 .heading2 {
        width: 92%;
        text-align: left;
    }

    .ser1 .heading3,
    .ser2 .heading3,
    .ser3 .heading3 {
        width: 88%;
        text-align: left;
    }

    .ser1 .heading4,
    .ser2 .heading4,
    .ser3 .heading4 {
        width: 95%;
        text-align: left;
    }

    .btn-grow {
        margin-right: 2px;
    }

    .social-ppc-clients .map-img {
        display: none !important;
    }

    .social-ppc-questions .questions {
        display: none;
    }

    .social-ppc-questions .questions-mbl {
        display: block;
        margin: 40px 0;
    }

    .social-ppc-questions .questions-mbl h6 {
        font-size: 18px;
        font-family: Inter;
        text-align: left;
        letter-spacing: -1px;
        margin-bottom: 12px;
        background: linear-gradient(to right, #f78f1f, #f15823);
        padding: 10px 20px;
        border-radius: 10px;
        color: #fff;
    }

    .social-ppc-clients #carouselExampleControls {
        display: block;
    }

    .social-media-ppc-hero-form .col-md-12 {
        text-align: left !important;
    }

    .min-strategy-form .col-md-12 {
        text-align: left !important;
    }

    .min-strategy-form .col-md-12 {
        margin: 10px 0;
    }

    .social-ppc-questions .heading h2 {
        font-size: 36px;
        margin-bottom: 8px;
    }

    .social-ppc-clients .text-area h3 {
        line-height: 40px;
    }

    .social-ppc-clients .text-area h3 br {
        display: none;
    }

    .social-ppc-pricing .heading h2 {
        font-size: 34px;
        line-height: 35px;
    }

    .social-choose-us .d-flex {
        display: none !important;
    }

    .min-strategy .text-area {
        padding-top: 40px;
    }

    .fa-chevron-down:before {
        margin-right: -20px;
    }

    .social-ppc-faq .faq-list a.collapsed {
        color: #fff;
        font-size: 14px;
        line-height: 18px;
        text-align: left;
    }

    .footer-2 .footer-top .cities-flex {
        padding-left: 20px;
    }
}

.local-seo-social-media-ads .heading h3 {
    font-family: Inter;
    margin-bottom: 16px;
    font-size: 48px;
    letter-spacing: -2px;
    font-weight: 900;
    line-height: 54px;
    background: -webkit-linear-gradient(left, #3978ac 30%, #00a14b 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.local-seo-social-media-ads .heading p {
    font-size: 18px;
    font-family: Inter;
    font-weight: 500;
    letter-spacing: -1px;
    line-height: 20px;
    margin-bottom: 32px;
    color: #262626;
    letter-spacing: -1px;
    margin-bottom: 40px;
}

.local-seo-social-media-ads .card {
    margin: 10px;
    display: inline-block;
    position: relative;
    width: 350px;
    height: 420px;
    opacity: 0.85;
}

.back,
.local-seo-social-media-ads .front {
    width: 100%;
    height: 100%;
    position: absolute;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
    border-radius: 0;
}

.local-seo-social-media-ads .front-one {
    transform: rotateY(0);
    background-image: url(../images/localseo/local-seo-card1.png);
    background-size: cover;
    background-position: bottom;
    text-align: center;
    padding: 30px;
}

.local-seo-social-media-ads .back-one {
    background: #000;
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    padding: 30px 25px !important;
    color: #fff;
}

.local-seo-social-media-ads .card:hover .front-one {
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
}

.local-seo-social-media-ads .card:hover .back-one {
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
}

.local-seo-social-media-ads .front-two {
    transform: rotateY(0);
    background-image: url(../images/localseo/local-seo-card2.png);
    background-size: cover;
    background-position: bottom;
    text-align: center;
    padding: 30px;
}

.local-seo-social-media-ads .back-two {
    background: #000;
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    padding: 30px 25px !important;
    color: #fff;
}

.local-seo-social-media-ads .card:hover .front-two {
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
}

.local-seo-social-media-ads .card:hover .back-two {
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
}

.local-seo-social-media-ads .front-three {
    transform: rotateY(0);
    background-image: url(../images/nationwide/card2.png);
    background-size: cover;
    background-position: bottom;
    text-align: center;
    padding: 30px;
}

.local-seo-social-media-ads .back-three {
    background: #000;
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    padding: 30px 25px !important;
    color: #fff;
}

.local-seo-social-media-ads .card:hover .front-three {
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
}

.local-seo-social-media-ads .card:hover .back-three {
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
}

.local-seo-social-media-ads .front-four {
    transform: rotateY(0);
    background-image: url(../images/localseo/local-seo-card4.png);
    background-size: cover;
    background-position: bottom;
    text-align: center;
    padding: 30px;
}

.local-seo-social-media-ads .back-four {
    background: #000;
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    padding: 30px 25px !important;
    color: #fff;
}

.local-seo-social-media-ads .card:hover .front-four {
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
}

.local-seo-social-media-ads .card:hover .back-four {
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
}

.local-seo-social-media-ads .front-five {
    transform: rotateY(0);
    background-image: url(../images/localseo/local-seo-card5.png);
    background-size: cover;
    background-position: bottom;
    text-align: center;
    padding: 30px;
}

.local-seo-social-media-ads .back-five {
    background: #000;
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    padding: 30px 25px !important;
    color: #fff;
}

.local-seo-social-media-ads .card:hover .front-five {
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
}

.local-seo-social-media-ads .card:hover .back-five {
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
}

.local-seo-social-media-ads .front-six {
    transform: rotateY(0);
    background-image: url(../images/localseo/local-seo-card6.png);
    background-size: cover;
    background-position: bottom;
    text-align: center;
    padding: 30px;
}

.local-seo-social-media-ads .back-six {
    background: #000;
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    padding: 30px 25px !important;
    color: #fff;
}

.local-seo-social-media-ads .card:hover .front-six {
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
}

.local-seo-social-media-ads .card:hover .back-six {
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
}

.local-seo-social-media-ads .front {
    padding: 70px 30px;
}

.local-seo-social-media-ads .front h4 {
    font-family: Inter;
    text-align: left !important;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0;
}

.local-seo-social-media-ads .front p {
    font-family: Inter;
    text-align: left !important;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 25px;
    line-height: 20px;
}

.local-seo-social-media-ads .back {
    padding: 12px 30px;
}

.local-seo-social-media-ads .back h4 {
    text-align: left;
    margin-bottom: 4px;
    font-weight: 700;
    font-family: Inter;
    font-size: 16px;
}

.local-seo-social-media-ads .back p {
    text-align: left;
    margin-bottom: 8px;
    font-size: 14px;
}

.local-seo-social-media-ads .back a {
    text-align: left;
    margin-bottom: 8px;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

.local-seo-social-media-ads .back .btn-danger {
    background-color: transparent;
    border: 2px solid #fff;
    padding: 1px 16px;
    border-radius: 0;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
    width: 100%;
}

.local-batting-blades .bg-img {
    background-image: url(../../../nJwaBs__P2JfMUeYJ4vmjQ/0cc972f4-411b-4aa6-5070-0ec8be515400/public);
    background-repeat: no-repeat;
    background-size: 128%;
    background-position: center;
    width: 100%;
    height: 80vh;
}

.local-batting-blades .heading {
    margin-top: 30px;
    margin-left: 100px;
}

.local-batting-blades .slider-paragraph p {
    margin-left: 50px;
    padding: 0 150px 50px 30px;
}

.ecommerce-batting-blades .swiper-button-next,
.local-batting-blades .swiper-button-prev {
    margin-top: -50px;
}

.local-batting-blades .heading h5 {
    font-family: Inter;
    font-size: 20px;
    font-weight: 700;
    color: #000;
}

.local-batting-blades .heading h2 {
    font-family: Inter;
    margin-bottom: 16px;
    font-size: 48px;
    letter-spacing: -2px;
    font-weight: 900;
    line-height: 60px;
    background: -webkit-linear-gradient(left, #3978ac 10%, #01a04d 40%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.local-batting-blades .bg-numbers {
    background-image: url(../images/bg-numbers.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 25vh;
}

.local-batting-blades .bg-numbers .num-blades {
    padding: 24px 0;
}

.local-batting-blades .bg-numbers .num-blades h3 {
    color: #fff;
    font-family: Inter;
    font-weight: 900;
    font-size: 50px;
}

.local-batting-blades .bg-numbers .num-blades p {
    color: #fff;
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
}

.technical-seo-min-strategy .text-area .btn-live-chat {
    background: 0 0 !important;
    text-decoration: none;
    color: #fff;
    padding: 1px 32px;
    font-size: 15px;
    font-family: Inter;
    margin-right: 16px;
    border-radius: 0;
    border: 1px solid #fff !important;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: normal;
    margin-top: 15px;
    box-shadow: none;
}

a.btn.btn-live-chat {
    border: 1px solid;
}

div#rightside-call {
    position: fixed;
    top: 50%;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    color: #fff;
    background-image: -moz-linear-gradient(180deg, #054c28 0, #069647 100%);
    background-image: -webkit-linear-gradient(180deg, #054c28 0, #069647 100%);
    background-image: -ms-linear-gradient(180deg, #054c28 0, #069647 100%);
    border-bottom-left-radius: 12px;
    border-top-left-radius: 12px;
    height: 50px;
    transition: all 0.2s ease-in-out;
    font-size: 20px;
    font-weight: 500;
    padding: 0.7em;
}

div#rightside-call a {
    color: #fff;
    display: none;
    margin-left: 10px;
    transition: all 0.2s ease-in-out;
}

div#rightside-call:hover a {
    display: block;
}

div#rightside-chat {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    color: #fff;
    background-image: -moz-linear-gradient(180deg, #054c28 0, #069647 100%);
    background-image: -webkit-linear-gradient(180deg, #054c28 0, #069647 100%);
    background-image: -ms-linear-gradient(180deg, #054c28 0, #069647 100%);
    border-bottom-left-radius: 12px;
    border-top-left-radius: 12px;
    height: 50px;
    transition: all 0.2s ease-in-out;
    font-size: 20px;
    font-weight: 500;
    padding: 0.7em;
    top: 40%;
}

div#rightside-chat a {
    color: #fff;
    display: none;
    margin-left: 10px;
    transition: all 0.2s ease-in-out;
}

div#rightside-chat:hover a {
    display: block;
}

@keyframes blinker {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

#sticky {
    position: sticky;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    opacity: 3;
    z-index: 100;
}

#wrapper {
    height: 800px;
}

.extra {
    height: 100px;
}

h4 {
    text-align: center;
}

ul.footer-quick-link li {
    display: inline !important;
    padding: 16px !important;
    text-decoration: none;
}

.fixed-top {
    position: absolute !important;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}

header#header {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 0.75rem 0;
    z-index: 100;
    background: var(--color-white);
    -webkit-box-shadow: var(--shadow-medium);
    box-shadow: var(--shadow-medium);
}

header#header .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

header#header .header-item-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 17%;
    flex: 0 0 17%;
}

header#header .header-item-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

header#header .header-item-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 17%;
    flex: 0 0 17%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

header#header .menu>ul {
    margin: 0;
    padding: 0;
}

header#header .menu>ul>li {
    display: inline-block;
    line-height: 3.125rem;
    margin-left: 1.5rem;
}

header#header .menu>ul>li>a {
    position: relative;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.25;
    border: none;
    outline: none;
    color: #000;
    text-transform: capitalize;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
}

header#header .menu>ul>li .menu-subs {
    position: absolute;
    width: 100%;
    height: auto;
    margin-top: 1.75rem;
    padding: 1rem 2rem;
    z-index: 109;
    opacity: 0;
    visibility: hidden;
    border-top: 5px solid #edb91b;
    /* background: #258788; */
    /* background: linear-gradient(90deg, #258788 35%, #079d58 100%); */
    -webkit-box-shadow: var(--shadow-medium);
    box-shadow: 0 10px 10px -5px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    background-color: #fff;
}

header#header .menu>ul>li .menu-subs>ul>li {
    line-height: 1;
}

header#header .menu>ul>li .menu-subs>ul>li>a {
    display: inline-block;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.25;
    padding: 0.75rem 0;
    border: none;
    outline: none;
    color: var(--color-black);
    text-transform: capitalize;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

header#header .menu>ul>li .menu-column-1 {
    min-width: 16rem;
    max-width: 20rem;
}

header#header .menu>ul>li .menu-subs.menu-mega {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

header#header .menu>ul>li .menu-subs.menu-mega>.list-item>ul>li {
    display: block;
    line-height: 1;
}

header#header .menu>ul>li .menu-subs.menu-mega>.list-item>ul>li>a {
    display: inline-block;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    padding: 0.5rem 0;
    border: none;
    outline: none;
    color: #000;
    text-transform: capitalize;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
}

header#header .menu>ul>li .menu-subs.menu-column-4 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 100%;
    width: 100%;
    padding: 1.25rem 1rem;
}

header#header .menu>ul>li .menu-subs.menu-column-4>.list-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 24%;
    padding: 0.5rem;
    border-radius: 8px;
    margin-right: 15px;
}

header#header .menu>ul>li .menu-subs.menu-column-4>.list-item .title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    margin: 0;
    color: #000;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    padding: 10px 0;
    text-align: left;
}

header#header .menu>ul>li .menu-subs.menu-column-4>.list-item.text-center .title {
    text-align: center;
}

header#header .menu>ul>li .menu-subs.menu-column-4>.list-item img {
    margin-right: 10px;
}

header#header .menu>ul>li .menu-subs.menu-mega>.list-item>ul>li>a:hover,
header#header .menu>ul>li .menu-subs>ul>li>a:hover {
    color: #f2bc18;
}

header#header .header-item-right a:hover,
header#header .menu>ul>li:hover>a {
    color: #f2bc18;
}

header#header .menu>ul>li .menu-subs.menu-mega>.list-item>ul {
    padding: 0;
    margin: 0;
}

header#header .menu-mobile-header,
header#header .menu-mobile-toggle {
    display: none;
}

header#header .header-item-right a.cta {
    font-size: 18px;
    font-weight: 700;
    line-height: 30px;
    display: inline-block;
    width: max-content;
    background-color: #fff;
    color: #000;
    padding: 0.5em 1em;
    box-shadow: 0 2px 24px 0 rgb(0 0 0 / 16%);
    border-radius: 12px;
}

header#header .menu>ul>li .menu-subs.menu-column-4>.list-item:nth-child(1) {
    background-color: #f2f8ff;
}

header#header .menu>ul>li .menu-subs.menu-column-4>.list-item:nth-child(2) {
    background-color: #f1f5f9;
}

header#header .menu>ul>li .menu-subs.menu-column-4>.list-item:nth-child(3) {
    background-color: #f2f5f9;
}

@media screen and (min-width: 993px) {
    header#header .menu>ul>li.menu-item-has-children:hover .menu-subs {
        margin-top: 30px;
        opacity: 1;
        visibility: visible;
    }
}

@media screen and (max-width: 992px) {
    header#header .header-item-center {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
    }

    header#header .header-item-left,
    header#header .header-item-right {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    }

    header#header .wrapper {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin: 0 auto;
        padding: 0.5rem 0;
    }

    header#header .menu-mobile-toggle {
        position: relative;
        display: block;
        cursor: pointer;
        width: 1.75rem;
        height: 1rem;
        border: none;
        outline: none;
        margin-left: 1.25rem;
        margin-top: -0.25rem;
        background: none;
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: 0.35s ease-in-out;
        transition: 0.35s ease-in-out;
    }

    header#header .menu-mobile-toggle span {
        display: block;
        position: absolute;
        width: 100%;
        height: 2px;
        left: 0;
        border: none;
        outline: none;
        opacity: 1;
        border-radius: 0.25rem;
        background: #000;
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: 0.25s ease-in-out;
        transition: 0.25s ease-in-out;
    }

    header#header .menu-mobile-toggle span:nth-child(1) {
        top: 0;
    }

    header#header .menu-mobile-toggle span:nth-child(2),
    header#header .menu-mobile-toggle span:nth-child(3) {
        top: 0.5rem;
    }

    header#header .menu-mobile-toggle span:nth-child(4) {
        top: 1rem;
    }

    header#header .header-item-right {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    header#header .menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 75%;
        height: 100%;
        z-index: 111;
        overflow: hidden;
        background: #258788;
        background: linear-gradient(90deg, #258788 35%, #079d58 100%);
        -webkit-transform: translate(-100%);
        transform: translate(-100%);
        -webkit-transition: all 0.5s ease-in-out;
        transition: all 0.5s ease-in-out;
    }

    header#header .menu.active {
        -webkit-transform: translate(0%);
        transform: translate(0%);
    }

    header#header .menu>ul>li {
        display: block;
        line-height: 1;
        margin: 0;
    }

    header#header .menu>ul>li>a {
        display: block;
        line-height: 3.125rem;
        height: 3.125rem;
        padding: 0 3.125rem 0 1rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    header#header .menu>ul>li>a i.ion {
        position: absolute;
        font-size: 1.25rem;
        line-height: 3.125rem;
        top: 0;
        right: 0;
        width: 3.125rem;
        height: 3.125rem;
        text-align: center;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
    }

    header#header .menu .menu-mobile-header {
        position: relative;
        position: sticky;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        top: 0;
        height: 3.125rem;
        z-index: 110;
        background: var(--color-white);
    }

    header#header .menu .menu-mobile-header .menu-mobile-arrow {
        display: none;
        font-size: 1.25rem;
        line-height: 3.125rem;
        width: 3.125rem;
        height: 3.125rem;
        cursor: pointer;
        text-align: center;
        border-right: 1px solid rgba(0, 0, 0, 0.1);
        color: var(--color-black);
    }

    header#header .menu .menu-mobile-header.active .menu-mobile-arrow {
        display: block;
    }

    header#header .menu .menu-mobile-header .menu-mobile-title {
        font-family: inherit;
        font-size: 1rem;
        font-weight: 500;
        line-height: inherit;
        color: #fff;
        text-transform: capitalize;
    }

    header#header .menu .menu-mobile-header .menu-mobile-close {
        font-size: 2.25rem;
        line-height: 3.125rem;
        cursor: pointer;
        width: 3.125rem;
        height: 3.125rem;
        text-align: center;
        border-left: 1px solid rgba(0, 0, 0, 0.1);
        color: var(--color-black);
    }

    header#header .menu .menu-section {
        height: 100%;
        overflow-y: auto;
        overflow-x: hidden;
    }

    header#header .menu>ul>li .menu-subs {
        position: absolute;
        display: none;
        top: 0;
        left: 0;
        max-width: none;
        min-width: auto;
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 1rem;
        padding-top: 4rem;
        opacity: 1;
        overflow-y: auto;
        visibility: visible;
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    header#header .menu>ul>li .menu-subs.menu-mega {
        position: absolute;
        display: none;
        top: 0;
        left: 0;
        max-width: none;
        min-width: auto;
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 1rem;
        padding-top: 4rem;
        opacity: 1;
        overflow-y: auto;
        visibility: visible;
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    header#header .menu>ul>li .menu-subs.active {
        display: block;
    }

    header#header .menu>ul>li .menu-subs.menu-column-4>.list-item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        padding: 0rem;
    }

    /* header#header .menu>ul>li .menu-subs.menu-column-4>.list-item img {
        margin-top: 0;
    } */
    header#header .menu>ul>li .menu-subs.menu-column-4>.list-item.text-center .title {
        margin-bottom: 1.25rem;
    }

    header#header .menu>ul>li .menu-subs.menu-column-4>.list-item.text-center:last-child .title {
        margin-bottom: 0rem;
    }

    header#header .menu>ul>li .menu-subs>ul>li>a {
        display: block;
    }

    header#header .menu>ul>li .menu-subs.menu-mega>.list-item>ul {
        margin-bottom: 1rem;
    }

    header#header .menu>ul>li .menu-subs.menu-mega>.list-item>ul>li>a {
        display: block;
    }

    header#header .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 100;
        opacity: 0;
        visibility: hidden;
        background: rgba(0, 0, 0, 0.65);
        -webkit-transition: all 0.45s ease-in-out;
        transition: all 0.45s ease-in-out;
    }

    header#header .overlay.active {
        opacity: 1;
        visibility: visible;
    }

    header#header .header-item-right a.cta {
        display: none;
    }

    header#header .menu .menu-mobile-header .menu-mobile-close {
        background-color: #fff !important;
        box-shadow: inherit !important;
        border: inherit !important;
        padding: 0 !important;
    }

    header#header .menu .menu-mobile-header .menu-mobile-close i {
        font-size: 30px !important;
        color: #079d58 !important;
    }

    header#header .menu>ul>li>a {
        color: #fff !important;
        font-size: 16px !important;
    }

    header#header .menu>ul>li .menu-subs.menu-column-4>.list-item {
        margin: 0 !important;
        padding: 0.7rem !important;
        margin-bottom: 0.7rem !important;
    }

    header#header .menu>ul>li .menu-subs.menu-column-4>.list-item img {
        display: none !important;
    }

    header#header .menu .menu-mobile-header {
        background-color: #f2f8ff !important;
    }

    header#header .menu .menu-mobile-header .menu-mobile-title {
        color: #000 !important;
        font-size: 18px !important;
        font-weight: 700 !important;
        text-transform: uppercase !important;
    }

    header#header .menu .menu-mobile-header .menu-mobile-arrow {
        border: inherit !important;
        background-color: #fff !important;
        color: #079d58 !important;
        font-size: 25px;
    }

    header#header .menu>ul>li .menu-subs.menu-column-4>.list-item .title {
        font-size: 14px !important;
        line-height: 24px !important;
    }
}

div#site-footer {
    position: relative;
    background-color: #f0f0f0
}

div#site-footer footer.footer {
    padding: 0 25px
}

div#site-footer .footer-main h3 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    line-height: 1;
    margin-bottom: 20px
}

div#site-footer .footer-main li {
    list-style: none
}

div#site-footer .footer-main ul {
    padding: 0;
    margin: 0
}

div#site-footer .footer-main a,
div#site-footer .footer-main ul li a {
    font-size: 15px;
    color: #636363;
    font-weight: 400;
    line-height: 30px;
    display: block;
    margin: 0
}

div#site-footer .footer-main .industries {
    display: flex
}

div#site-footer .footer-main .locations {
    display: flex;
    justify-content: flex-start
}

div#site-footer .footer-main .locations ul:first-child {
    margin-right: 40px
}

div#site-footer .footer-main .industries div:first-child {
    margin-right: 30px
}

div#site-footer .footer-main .content p {
    font-size: 14px;
    color: #525252;
    line-height: 24px;
    margin-top: 25px;
    margin-bottom: 30px
}

div#site-footer footer.footer .footer-main {
    padding: 80px 0 20px 0;
    border-bottom: 1px solid #63636336
}

div#site-footer .footer-main .content li a {
    color: #525252;
    font-size: 18px;
    padding-right: 20px;
    line-height: 28px;
    display: inline-block;
    margin-bottom: 0
}

div#site-footer .footer-main .content li a:last-child {
    padding-right: 0
}

div#site-footer .footer-main a {
    margin-bottom: 20px
}

div#site-footer .footer-main .alllocations {
    padding-left: 30px
}

div#site-footer footer.footer .footer-bottom {
    padding: 20px 0
}

div#site-footer footer.footer .footer-bottom ul {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    margin-bottom: 20px
}

div#site-footer footer.footer .footer-bottom ul li {
    list-style: none
}

div#site-footer footer.footer .footer-bottom p,
div#site-footer footer.footer .footer-bottom p a,
div#site-footer footer.footer .footer-bottom ul li a {
    font-size: 16px;
    color: #636363;
    font-weight: 400;
    padding: 0 20px;
    line-height: 26px
}

div#site-footer a:hover {
    color: #05512a !important
}

div#site-footer footer.footer .footer-bottom p {
    text-align: center;
    margin-bottom: 0;
    margin-top: 20px
}

div#site-footer .footer-main a.map::before {
    content: "";
    background-image: url(../../../nJwaBs__P2JfMUeYJ4vmjQ/5a28dfdb-b962-4d5c-0007-8c233251d400/public);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 14px;
    height: 18px;
    display: block;
    position: absolute;
    left: -5px;
    top: 7px
}

div#site-footer .footer-main a.call,
div#site-footer .footer-main a.map,
div#site-footer .footer-main a.phone {
    position: relative;
    padding-left: 20px
}

div#site-footer .footer-main a.call::before {
    content: "";
    background-image: url(../../../nJwaBs__P2JfMUeYJ4vmjQ/9556b08f-a465-4643-a1d7-4004d5eb6900/public);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 18px;
    height: 18px;
    display: block;
    position: absolute;
    left: -5px;
    top: 5px
}

div#site-footer .footer-main a.phone::before {
    content: "";
    background-image: url(../../../nJwaBs__P2JfMUeYJ4vmjQ/6cc13821-49bb-46e6-6700-b2440097a700/public);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 18px;
    height: 18px;
    display: block;
    position: absolute;
    left: -5px;
    top: 5px
}

@media only screen and (max-width:767px) {
    div#site-footer footer.footer .footer-main {
        padding: 40px 0
    }

    div#site-footer .footer-main .industries {
        display: block
    }

    div#site-footer .footer-main h3 {
        margin: 20px 0;
        text-align: left
    }


    div#site-footer .footer-main a,
    div#site-footer .footer-main ul li a {
        font-size: 14px;
        line-height: 26px;
        text-align: left;
    }

    div#site-footer footer.footer .footer-bottom ul {
        display: block;
        text-align: center
    }

    div#site-footer footer.footer .footer-bottom ul li {
        margin: 10px 0
    }

    div#site-footer footer.footer .footer-bottom p {
        font-size: 15px;
        line-height: 25px
    }

    div#site-footer footer.footer .footer-main .row .col-lg-3:last-child img {
        display: none
    }

    div#site-footer .footer-main .locations {
        display: block
    }

    div#site-footer footer.footer .footer-bottom p a {
        padding: 0
    }

    div#site-footer .footer-main .locations ul:first-child {
        margin-right: 0 !important;
    }

    div#site-footer .footer-main .industries div:first-child {
        margin-right: 0 !important;
    }

    div#site-footer .footer-main .alllocations {
        padding-left: 15px !important;
    }

    div#site-footer .footer-main .content p,
    div#site-footer .footer-main .content li {
        text-align: left;
    }
}
#staticloadmodel .modal-body {
    padding: 0px 50px 50px 50px;
}
#staticloadmodel .contact-form input {
    border: 1px solid #e3e3e3c9;
    width: 100%;
    height: 40px;
    padding: 0 20px;
    font-size: 14px;
    color: #000;
    font-weight: 500;
    margin-bottom: 11px;
    letter-spacing: -1px;
    border-radius: 0px !important;
    border-bottom: 2px solid #1B8E79;
}
#staticloadmodel .contact-form .primary-btn {
    width: 100%;
    background-image: -moz-linear-gradient(180deg, #CAA32D 0, #F3BC18 100%);
    background-image: -webkit-linear-gradient(180deg, #CAA32D 0, #F3BC18 100%);
    background-image: -ms-linear-gradient(180deg, #CAA32D 0, #F3BC18 100%);
    border: inherit;
    height: 45px;
    padding: 0;
    font-size: 16px;
    font-weight: 500;
    color: #000;
}
#staticloadmodel .modal-content {
    border-radius: 0px;
}
@media (min-width: 576px) {
    #staticloadmodel .modal-dialog {
        max-width: 567px;
    }
}
#staticloadmodel button.close {
    float: right;
    border: 0px;
    color: #000;
    font-size: 30px;
    padding: 0px 6px 0px 10px;
    border-radius: 3px;
    background: transparent;
    margin-top: -7px;
}
#staticloadmodel .contact-form h3 {
    text-align: left;
    font-size: 28px;
    font-weight: 900;
    color: #000;
    line-height: 1.1em;
    letter-spacing: -0.7px;
}
#staticloadmodel .contact-form h3 span {
    background: -webkit-linear-gradient(left, #CBA42D, #EFBA19);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #00000021;
}
#staticloadmodel .contact-form p {
    font-size: 14px;
}
#staticloadmodel .contact-form a {
    font-weight: 700;
    color: #000;
    text-decoration: underline;
}
div#site-footer .footer-main h3 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    line-height: 1;
    margin-bottom: 20px;
}
div#site-footer .footer-main form button {
    width: 50px;
    background-image: -moz-linear-gradient(180deg, #caa32d 0, #f3bc18 100%);
    background-image: -webkit-linear-gradient(180deg, #caa32d 0, #f3bc18 100%);
    background-image: -ms-linear-gradient(180deg, #caa32d 0, #f3bc18 100%);
    border: inherit;
    height: 100%;
    padding: 0;
    font-size: 16px;
    font-weight: 700;
    color: #000;
    border-radius: 0 10px 10px 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
}
div#site-footer .footer-main form {
    width: 100%;
    position: relative;
    height: 50px;
}
div#site-footer .footer-main form input {
    height: 100%;
    border-radius: 10px;
    border: 2px solid #f2bc18;
    padding: 0 10px;
    font-size: 14px;
    color: #000;
    font-weight: 500;
    margin-bottom: 10px;
    padding-right: 50px;
}
.form-control {
    display: block;
    width: 100%;
    line-height: 1.5;
    background-color: #fff;
    background-clip: padding-box;
    appearance: none;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.form-control:focus {
    background-color: #fff;
    outline: 0;
}
input:focus {
    box-shadow: inherit !important;
}
div#mce-success-response {
    text-align: center;
    font-size: 14px;
    line-height: 1;
    color: #01a04d;
    font-weight: 600;
}
.fnt-16{
    font-size:16px;
}
.hyperlink-text{
        font-family: Inter;
        margin-bottom: 16px;
        font-size: 46px !important;
        letter-spacing: -2px;
        font-weight: 900 !important;
        line-height: 50px;
        background: -webkit-linear-gradient(left, #3978ac 30%, #00a14b 70%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
}
.text-black{
    color:#000;
}
header#header .menu>ul>li .menu-subs.menu-column-4>.list-item:nth-child(4){background-color:#f0f0f0}header#header .menu>ul>li .menu-subs.menu-mega>.list-item>ul>li{display:block;line-height:1!important}