@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


* {
    box-sizing: border-box;
}

:root {
    --black: #000;
    --white: #fff;
    --white2: #F7F9F6;
    --white3: #FAFAFA;
    --white4: #F2F2F2;
    --sky: #1C9FB5;
    --lightsky: #E0F5F8;
    --lightblue: #2DA3B6;
    --headertopblue: #4ABCBA;
    --blue: #26335D;
    --black15: #151515;
    --yellow: #FFB300;
    --orange: #FC7B0A;
    --footerblack: #020F26;
    --footerblue: #03173D;
    --purple: #16021A;
    --grey: #929292;
    --grey2: #8E8B8B;
    --grey3: #dedede;
    --grey4: #A7A3A3;
    --gradient: linear-gradient(98.37deg, #54C5D1 14.87%, #26335D 91.59%);
    --montserrat: "Montserrat", sans-serif;
}

html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
    font-family: var(--montserrat);
    font-weight: 400;
    color: var(--black);
    background: var(--white);
    overflow-x: hidden;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    margin: 0;
    padding: 0;
    font-weight: 400;
}

h1 {
    color: var(--white);
}

.h1-title {
    font-size: 50px;
    font-weight: 500;
    line-height: 1.05em;
    text-align: center;
    text-transform: uppercase;
    color: var(--white);
}

h2 {
    font-size: 42px;
    line-height: 1.05em;
    text-align: center;
    text-transform: uppercase;
}

h2 span {
    display: block;
    font-weight: 800;
    color: var(--lightblue);
}

h3 {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.813rem;
    text-transform: uppercase;
}

h4 {
    font-size: 30px;
    font-weight: 600;
    line-height: 1.03em;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

a {
    display: inline-block;
    text-decoration: none;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    color: inherit;
}

a:hover {
    text-decoration: none;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    color: var(--blue);
}


:focus {
    outline: none !important;
    text-decoration: none;
}

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

iframe {
    max-width: 100%;
}

label {
    display: inline-block;
    font-size: 16px;
    line-height: 1;
    color: #FFFFFF;
    margin: 0 0 10px;
}

label span {
    display: block;
    font-size: 14px;
    margin-top: 10px;
}

.select {
    position: relative;
}

.select::after {
    content: "\e91b";
    font-family: "Syd";
    color: #000;
    font-size: 14px;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    right: 18px;
    pointer-events: none;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    background: #fff;
    border-radius: 10px;
    border: #e3e3e3 1px solid;
    padding: 9px 14px;
    font-size: 17px;
    font-weight: 400;
    line-height: 17px;
    color: #6c6b6b;
}

textarea {
    width: 100%;
    background: #fff;
    border-radius: 10px;
    border: #e3e3e3 1px solid;
    transition: 0.2s ease all;
    resize: none;
    padding: 9px 14px;
    font-family: "Cabin", sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 17px;
    color: #6c6b6b;
}

[type="text"],
[type="date"],
[type="datetime"],
[type="datetime-local"],
[type="email"],
[type="month"],
[type="number"],
[type="password"],
[type="search"],
[type="tel"],
[type="url"],
[type="week"],
[type="date"] {
    width: 100%;
    height: 45px;
    background: #FFFFFF;
    border-radius: 6px;
    border: #EEEEEE 1px solid;
    outline: none;
    padding: 9px 14px;
    font-size: 15px;
    font-weight: 400;
    line-height: 17px;
    color: #000;
    transition: 0.2s ease all;
}

textarea {
    height: 70px;
}

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

[type="submit"] {
    border: 1px solid #292929;
    outline: none;
    padding: 13px 25px;
    font-size: 18px;
    font-weight: 500;
    line-height: 20px;
    text-transform: uppercase;
    color: #292929;
    border-radius: 0px;
    transition: 0.2s ease all;
    background: #fff;
    text-align: center;
    display: inline-block;
}

[type="submit"]:hover {
    background: var(--lightblue);
}


.btns {
    display: inline-block;
    font-size: 15px;
    line-height: 1.3157894736842106em;
    font-weight: 500;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    border: 1px solid transparent;
    transition: 0.4s;
    padding: 12px 30px;
}


.tertiary-button {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    background-color: var(--lightblue);
    text-transform: uppercase;
    padding: 16px 70px;
    position: relative;
}

.tertiary-button span {
    position: relative;
    z-index: 2;
}

.tertiary-button::after {
    content: " ";
    width: 0;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 100%;
    z-index: 1;
    background-color: #1288a2;
    color: #fff;
    transition: all 0.3s ease;
}

.black-btn {
    background-color: var(--black);
}

.black-btn::after {
    background-color: var(--sky);
}

.tertiary-button:hover {
    color: var(--white);
}

.tertiary-button:hover.tertiary-button::after {
    width: 100%;
    left: 0;
    transition: width 0.3s ease;
}



p {
    line-height: 1.5em;
    font-weight: 400;
    margin: 0;
}

.text-flex {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.container {
    max-width: 100%;
    padding: 0 20px;
    position: relative;
}

.section-heading {
    max-width: 610px;
    margin: 0 auto;
    gap: 22px;
}

.section-heading p {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.625rem;
    text-align: center;
}




/* header-start========================================= */

/* header-top-start----------------------------- */
.top-header {
    box-shadow: 0px 4px 44px 0px #0000001A;
    background-color: #020F26;
    padding: 15px 0;
}

.top-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.custom-select {
    width: 70px;
    height: auto;
    outline: none;
    border: 0;
    padding: 0;
    background-color: transparent;
    font-weight: 500;
    font-size: 14px;
    color: var(--grey);
    position: relative;
    cursor: pointer;
}

.custom-select option {
    color: var(--black);
}

.header-select-box {
    display: inline-flex;
    align-items: center;
    position: relative;
    background-color: transparent;
}

.header-select-box i {
    position: absolute;
    right: 0;
    pointer-events: none;
    color: var(--grey);
    font-size: 14px;
}

.custom-select:hover,
.header-select-box:hover i {
    color: var(--headertopblue);
}

.header-info-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-info-icon-box,
.header-follow-us-box ul li a {
    width: 21px;
    height: 21px;
    border: 2px solid var(--grey);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-info-icon-box i,
.header-follow-us-box ul li a i {
    color: var(--grey);
    font-size: 10px;
}

.header-info-box span,
.header-follow-us-box span {
    font-size: 16px;
    font-weight: 500;
    color: var(--grey);
}

.header-info-box span:hover,
.header-info-icon-box:hover i,
.header-info-icon-icon:hover i,
.header-follow-us-box ul li a:hover i {
    color: var(--headertopblue);
}

.header-info-icon-box:hover,
.header-follow-us-box ul li a:hover {
    border: 2px solid var(--headertopblue);
}

.header-info-icon-icon i {
    font-size: 19px;
    color: var(--grey);
}

.header-follow-us-box,
.header-follow-us-box ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.header-follow-us-box ul li a i {
    transition: all 0.3s ease-in-out;
}

/* header-top-end------------------------- */

/* main-header-start----------------- */

.main-header {
    background-color: var(--white);
    padding: 16px 0;
    box-shadow: 0px 4px 44px 0px #0000001F;
}

.header-wrapper,
.menu-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    width: 30%;
}

.logo a {
    max-width: 220px;
}

.header-right {
    width: 70%;
}

.menu-bar li a {
    font-size: 20px;
    font-weight: 500;
    color: var(--black);
}

.menu-bar li a:hover {
    color: var(--lightblue);
}

.toggle-btn {
    display: none;
}


/* main-header-end------------------- */

/* header-end============================================= */

/* banner start */

.banner {
    width: 100%;
    height: 100%;
    position: relative;

}


.banner-content h1 span,
.join-sec h2 span,
.digital-marketing-services-left h2 span {
    font-weight: 800;
    font-size: 48px;
    color: var(--white);
    display: block;
}

.banner-content p,
.join-sec p {
    max-width: 520px;
    font-weight: 500;
    font-size: 17px;
    line-height: 27px;
    color: var(--white);
    padding: 25px 0 32px;
}

.banner-content-outer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 65px 0;
}

.banner-bg-video {
    width: 100%;
    height: 433px;
    overflow: hidden;
}

.banner-bg-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* banner end */

/* work-section-start============= */
.work-section {
    padding: 110px 0;
}

.work-section-row {
    --bs-gutter-x: 30px;
    --bs-gutter-y: 30px;
}

.work-section-box {
    height: 100%;
    border: 1px solid #EBEBEB;
    border-radius: 8px;
    box-shadow: 0px 4px 44px 0px #0000001A;
    background-color: var(--white);
    padding: 40px 27px;
    justify-content: start;
    transition: 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}



.work-section-box::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 0%;
    background-color: var(--sky);
    top: 0;
    left: 0;
    border-bottom-right-radius: 150px;
    transition: all .3s ease-in-out;
}

.work-section-box:hover::after {
    width: 100%;
    height: 100%;
    border-radius: 0;
}

.work-section-box-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.work-section-img-box {
    width: 78px;
    height: 78px;
    border-radius: 2px;
    background-color: var(--lightblue);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s ease-in-out;
}

.work-section-text-box {
    padding: 40px 15px 0;
    transition: 0.3s ease-in-out;
}

.work-section-img-box i {
    font-size: 35px;
    color: var(--white);
    transition: 0.3s ease-in-out;
}

.work-section-text-box h3 {
    text-align: center;
    padding: 0 52px 18px;
}

.work-section-box:hover {
    background: var(--lightblue);
}

.work-section-box:hover .work-section-img-box {
    background-color: var(--white);
}

.work-section-box:hover i {
    color: var(--lightblue);
}

.work-section-box:hover h3,
.work-section-box:hover p {
    color: var(--white);
}

/* work-section-end=============== */

/* service-section-start=========== */

.service-package-sec {
    padding: 80px 0;
}

.service-package-sec .work-section-row {
    padding: 30px 0;
    --bs-gutter-x: 29px;
}

.service-package-box {
    height: 100%;
    border: 1px solid #EBEBEB;
    border-radius: 4px;
    box-shadow: 0px 4px 44px 0px #0000001A;
    padding: 32px 15px 70px 20px;
}

.service-package-box {
    position: relative;
    overflow: hidden;
}

.service-package-box-inner {
    display: flex;
    flex-direction: column;
    gap: 22px;
    position: relative;
    z-index: 2;
}

.service-package-box::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 0%;
    background-color: var(--sky);
    top: 0;
    left: 0;
    border-bottom-right-radius: 150px;
    transition: all .3s ease-in-out;
}

.service-package-box:hover::after {
    width: 50%;
    height: 35%;
}

.service-package-box i {
    font-size: 60px;
    color: var(--yellow);
}

/* service-section-end============= */

/* Happy Clients About Us start  */

.clients-about-us {
    background: var(--lightsky);
    padding: 50px 0 60px;
}

.clients-about-us-slider-box-inner {
    height: 100%;
    background-color: var(--white);
    border: 1px solid var(--grey4);
    padding: 46px 32px 40px;
    box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.clients-about-us-slider-box,
.latest-blog-slider-box {
    height: 100%;
    padding: 12px;
}

.clients-about-us-slider .slick-list,
.latest-blog-slider .slick-list {
    margin: 0 -12px;
}

.about-icon-text i {
    font-size: 20px;
    color: var(--yellow);
}

.about-icon-text p {
    font-weight: 500;
    font-size: 17px;
    line-height: 26px;
    padding: 35px 0;
}

.clients-about-us-info h4 {
    font-weight: 600;
    font-size: 16px;
    line-height: 26px;
    text-transform: uppercase;
    color: var(--sky);
}

.clients-about-us-info span {
    font-weight: 500;
    font-size: 14px;
    line-height: 26px;

}

/* Happy Clients About Us end */

/* Latest From the Blog start */

.latest-blog {
    padding-top: 80px;
}

.latest-blog-slider-box {
    margin-bottom: 100px;
}

.latest-blog-slider-box-inner {
    height: 100%;
    box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.1);
}

.latest-blog-text {
    background-color: var(--white);
    padding: 23px 14px 34px;
}

.latest-blog-text h3 {
    max-width: 215px;
    font-weight: 700;
    font-size: 17px;
    line-height: 20px;
    padding-bottom: 9px;
}

.latest-blog-text span {
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    color: var(--orange);
}

.latest-blog-text p {
    max-width: 243px;
    font-size: 15px;
    line-height: 19px;
    padding: 13px 0 10px;
}

.latest-blog-slider-img img {
    width: 100% !important;
}

.latest-blog-text a {
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    color: var(--sky);
}

.latest-blog-text a:hover {
    color: var(--yellow);
}

.latest-blog-slide,
.clients-about-us-slide {
    padding: 29px 0 0;
}

/* Latest From the Blog end */

/* newsletter start */

.join-sec {
    width: 100%;
    height: 100%;
    background: var(--gradient);
    background-size: 200% 200%;
    animation: gradientShift 10s ease-in-out infinite;
    padding: 60px 15px;
    position: relative;
}

/* Animate background gradient */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.wave-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100%;
    animation: waveMotion 12s linear infinite;
}

.wave.delay {
    animation-delay: -6s;
    opacity: 0.5;
}

@keyframes waveMotion {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.join-sec h2,
.join-sec h2 span,
.digital-marketing-services-left h2 {
    font-size: 40px;
    color: var(--white);
    text-transform: uppercase;
}

.join-sec p {
    padding: 16px 0 20px;
}

.join-input-box {
    min-width: 570px;
}

.email-btn-sec {
    width: 200px;
    height: 50px;
}

.join-dtl-box {
    max-width: 793px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    border: 1px solid var(--white);
}

.email-btn-sec button {
    width: 100%;
    height: 100%;
    border: 0;
    background-color: var(--yellow);
    font-weight: 500;
    font-size: 17px;
    color: var(--white);
}

.join-input-box input {
    border-radius: 0;
    padding: 20px 30px;
    height: 50px;
    background: rgba(255, 255, 255, 0.23);
    transition: all .4s ease-in-out;
    color: var(--white);
}

.join-input-box input::placeholder {
    color: var(--white);
    text-transform: capitalize;
    font-size: 15px;
}

.news-letter-form {
    position: relative;
    z-index: 1;
}


/* newsletter end */


/* footer start */

.footer-inner {
    background-color: var(--footerblack);
    padding: 40px 0 30px;
}

.footer-box img {
    width: 248px;
}

.footer-box p {
    max-width: 313px;
    font-size: 15px;
    line-height: 20px;
    color: var(--white);
    padding-bottom: 24px;
}

.footer-social ul {
    display: flex;
    flex-wrap: wrap;
}

.footer-social ul li a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
}

.footer-social ul li a:hover {
    transform: translateY(-5px);
}

.footer-social ul li a i {
    font-size: 14px;
    color: var(--white);
    transition: all .4s ease-in-out;
}

.footer-social ul li a:hover {
    border: 1px solid var(--yellow);
}

.footer-social ul li a:hover i {
    color: var(--yellow);
}

.footer-heading {
    font-weight: 700;
    font-size: 20px;
    line-height: 20px;
    color: var(--white);
    padding-bottom: 27px;
}

.footer-icon i {
    color: var(--yellow);
    margin-right: 17px;
}

.footer-contact-cont a {
    font-weight: 600;
    color: var(--white);
    padding-bottom: 5px;
}

.footer-contact-cont a:hover,
.quick-link ul li a:hover {
    color: var(--yellow);
}

.footer-contact-cont p {
    font-size: 14px;
    line-height: 20px;
    color: var(--grey2);
}

.contact-list li,
.quick-link {
    display: flex;
}

.quick-link {
    gap: 36px;
}

.quick-link ul li a {
    line-height: 36px;
    color: var(--white);
}

.footer-row {
    --bs-gutter-x: 0;
}

.footer-bottom {
    background-color: var(--footerblue);
    padding: 10px 15px;
}

.footer-bottom p,
.footer-bottom p a {
    font-size: 13px;
    line-height: 20px;
    color: var(--grey3);
    text-align: center;
}

.footer-bottom p a {
    text-decoration: underline;
}

.footer-bottom p a:hover {
    color: var(--yellow);
}

@keyframes topfadeUp {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

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

.footer-box {
    opacity: 0;
    animation: topfadeUp 0.6s ease forwards;
}

.col-lg-4:nth-child(1) .footer-box {
    animation-delay: 0.2s;
}

.col-lg-4:nth-child(2) .footer-box {
    animation-delay: 0.3s;
}

.col-lg-4:nth-child(3) .footer-box {
    animation-delay: 0.5s;
}

/* footer end */



/* 11-10-25 */

/* Digital Marketing Services start */

.digital-marketing-services {
    background: var(--gradient);
    background-size: 200% 200%;
    animation: gradientShift 10s ease-in-out infinite;
    padding: 55px 0;
    position: relative;
}

.digital-marketing-services-left h2 {
    text-align: start;
    line-height: 49px;
}

.digital-marketing-services-left p {
    max-width: 432px;
    color: var(--white);
    padding: 30px 0;
}

.check-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: var(--yellow);
    display: flex;
    justify-content: center;
    align-items: center;
}

.check-icon i {
    font-size: 12px;
    color: var(--lightblue);
}

.digital-marketing-services-right ul li {
    display: flex;
    padding-bottom: 25px;
}

.right-text p {
    max-width: 486px;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    color: var(--white);
    padding-left: 15px;
}

/* Digital Marketing Services end */


/* about-us-banner-start---------------- */
.inner-video {
    height: 250px;
}

.inner-page-outer {
    height: 100%;
    padding: 0;
}

/* .about-us-banner {
    padding: 92px 0 91px;
    background-position: bottom;
} */

.about-banner-link {
    text-align: center;
    color: var(--white);
    text-transform: capitalize;
    margin-top: 10px;
}

.about-banner-link i {
    font-size: 13px;
    margin: 0 5px;
}

/* about-us-banner-end------------------- */


/* increasing-business-sec-start--------------- */
.increasing-business-sec {
    padding-bottom: 140px;
}

.section-heading.thin-heading span {
    display: inline;
    font-weight: 700;
}

.increase-business-row {
    align-items: center;
    justify-content: start;
    margin-top: 90px;
    --bs-gutter-x: 40px;
}

.increase-business-img-box,
.increase-business-text-box {
    height: 100%;
}

.increase-business-img-box>img {
    width: 100%;
    max-width: 500px;
}

.increase-business-text-box .digital-marketing-services-right .check-icon i {
    color: var(--white);
}

.increase-business-text-box>p {
    font-size: 18px;
    padding: 13px 0 17px;
}

.increase-business-text-box .digital-marketing-services-right .right-text p {
    color: #2F2E2E;
    font-size: 17px;
}

.check-icon-inner {
    padding-top: 5px;
}

.increase-business-button {
    margin-top: 13px;
}

/* increasing-business-sec-end------------------- */

/* why-choose-us-sec-start----------------------- */
.sub-heading {
    font-size: 20px;
    text-align: center;
    text-transform: uppercase;
    color: var(--sky);
}

.why-choose-us-row {
    --bs-gutter-x: 28px;
    padding-bottom: 0;
}

.why-choose-us-row .service-package-box {
    justify-content: start;
}

.why-choose-us-row .service-package-box p {
    padding: 0 55px;
}


/* why-choose-us-sec-end-------------------------- */

/* team-slider-section-start---------------- */

.team-member-sec .section-heading {
    max-width: 550px;
    margin-bottom: 30px;
}

.team-member-box {
    height: 100%;
}

.team-member-overley {
    margin: -160px 20px 90px;
    padding: 36px 15px;
    transition: all .2s ease-in-out;
    bottom: -100px;
    position: relative;
    background: var(--white);
    box-shadow: 0px 4px 44px 0px #0000001A;
}

.team-member-cont h5 a {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
}

.team-member-cont>a {
    color: var(--lightblue);
    text-transform: capitalize;
    text-align: center;
}

.team-member-box:hover .team-member-overley {
    bottom: -20px;
}

.team-member-slide-adjuster {
    padding: 0 15px;
    margin-bottom: 80px;
}

.team-member-sec.service-package-sec {
    padding-bottom: 0;
}

/* team-slider-section-end------------------ */

/* contact us form start */

.contact-form-inner {
    background-color: var(--white2);
    padding: 44px 15px;
}

.contact-form-inner h3 {
    font-weight: 700;
    font-size: 30px;
    padding-bottom: 35px;
}

.contact-form {
    margin-top: 80px;
}

.contact-cont-box {
    margin-left: 30px;
}

.contact-cont-box a {
    font-weight: 700;
    font-size: 17px;
    line-height: 28px;
    color: var(--purple);
}

.contact-cont-box span {
    color: var(--purple);
    display: block;
}

.contact-icon-inner {
    width: 73px;
    height: 68px;
    background-color: var(--sky);
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-icon-inner i {
    color: var(--white);
}

.contact-details-inner {
    background-color: var(--white3);
    border: 1px solid var(--white3);
    padding: 33px 20px;
    display: flex;
    transition: all .4s ease-in-out;
}

.contact-details-inner:hover {
    background-color: var(--white);
    border: 1px solid var(--white4);
    box-shadow: 0px 4px 44px 0px #00000026;
}

.contact-details-box {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.contact-us-form {
    background-color: var(--white);
    padding: 39px 30px 54px 31px;
}

.contact-us-form-row {
    --bs-gutter-x: 33px;
    --bs-gutter-y: 60px;
}

.contact-us-form-input input,
.contact-us-form-input textarea {
    border: 0;
    border-bottom: 1px solid #9CA5B1;
    border-radius: 0;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.8em;
    color: var(--black);
    padding: 0 10px 20px 0;
}

.send-btn {
    display: flex;
    justify-content: end;
}

.send-btn button {
    border: 0;
    padding-left: 93px;
    padding-right: 93px;
}

/* contact us form end */

/* contact us map start */
.map {
    margin: 60px 0;
}

.map-sec {
    height: 397px;
}

.map-sec iframe {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

/* contact us map end */


#newsletter-form{
    z-index: 1;
}

/* local-seo start */

.local-seo {
    padding-top: 80px;
    position: relative;
}

.color-bg {
    position: absolute;
    top: 0;
    left: 0;
}

.color-bg img {
    max-width: 540px;
}

.local-seo-img img {
    max-width: 829px;
    height: 400px;
}

.local-seo-title h2 {
    max-width: 779px;
    font-weight: 400;
    font-size: 30px;
    line-height: 45px;
    padding-top: 31px;
}

.local-seo-title h2 span {
    font-weight: 700;
    text-transform: uppercase;
    color: var(--lightblue);
    display: contents;
}

.local-seo-title p {
    max-width: 853px;
    font-size: 16px;
    line-height: 27px;
    padding: 31px 0;
}

.tell-btn a {
    padding: 20px 35px;
}

/* local-seo end  */

/* halfimg-halftext start */

.halfimg-halftext::before {
    width: 100%;
    height: 100%;
    content: "";
    background-image: url(../img/white-bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    opacity: 0.9;
}

.halfimg-halftext {
    width: 100%;
    height: 100%;
    background-color: #afd79c7a;
    margin-top: 80px;
    position: relative;
}

.service-right-text h2 {
    max-width: 500px;
    text-align: start;
}

.service-right-text p {
    max-width: 552px;
}

.service-left-img,
.service-left-img img {
    height: 100%;
    object-fit: contain;
}

.halfimg-halftext .row{
    padding: 30px 0;
}

/* halfimg-halftext end */

/* Quality Skills start */

.quality-skills-title h2 {
    font-weight: 700;
    font-size: 32px;
    line-height: 45px;
    text-transform: uppercase;
}

.quality-skills-box {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 30px;
    border-right: 1px solid #989795;
}

.quality-skills-box:last-child {
    border: 0;
}

.quality-skills-flex {
    display: flex;
    border-bottom: 1px solid #989795;
    border-top: 1px solid #989795;
}

.quality-skills-box h4 {
    font-weight: 700;
    font-size: 48px;
    color: var(--lightblue);
}

.quality-skills {
    padding: 50px 0 80px;
}

/* Quality Skills end */

/* your-business start */

.your-business {
    background-color: var(--lightsky);
    padding: 25px 0 55px;
}

.your-business-title h2 {
    max-width: 634px;
}

.your-business-title p {
    padding: 10px 0 55px;
}

/* your-business end */

/* Tell Us About Your Project start */

.tell-project-form {
    max-width: 726px;
    margin: 50px auto 0;
}

.tell-project-form-row {
    --bs-gutter-x: 38px;
    --bs-gutter-y: 25px;
}

.tell-project-form-input input,
.tell-project-form-input textarea {
    border: 0;
    border-bottom: 1px solid #EBE9E7;
    border-radius: 0;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.8em;
    color: #5E5D5C;
    padding: 0 10px 18px 0;
}

.tell-project-form-input textarea {
    font-family: var(--montserrat);
    height: 50px;
}

.tell-project-form .send-btn {
    justify-content: center;
    margin-top: 49px;
}

.tell-project-form .send-btn button {
    padding: 20px 34px;
}

.tell-us-project-img-box {
    max-width: 585px;
    margin: 20px auto 0;
}

/* Tell Us About Your Project end */

/* your-business start */

.business-box {
    background-color: var(--white);
    padding: 23px 37px 32px;
}

.business-box img {
    width: 70px;
    height: 70px;
}

.business-box h5 {
    font-weight: 600;
    font-size: 22px;
    line-height: 42px;
    padding: 25px 0;
}

.business-box p{
    max-width: 426px;
}

/* your-business end */

/* help-companies-tab-sec start */

.help-companies-sec {
    padding: 91px 0 76px;
}

.section-heading h3 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.05em;
    text-transform: uppercase;
}


.help-companies-tab-row {
    padding-top: 32px;
    --bs-gutter-y: 53px;
}

.help-companies-tab-top .nav {
    border: 0px;
}

.help-companies-tab-top .nav button {
    border: 1px solid #c3c3c3;
}

.help-companies-tab-top .nav button {
    padding: 13px 32px;
    border-radius: 0;
    margin-right: 20px;
}

.help-companies-tab-top .nav button:last-child {
    margin-right: 0;
}

.help-companies-tab-top .nav button span {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5em;
    text-align: center;
    text-transform: uppercase;
    color: var(--black);
}

.help-companies-tab-top .nav button.active,
.help-companies-tab-top .nav button:hover {
    background: linear-gradient(98.37deg, #54C5D1 14.87%, #26335D 91.59%);
    border: 1px solid var(--white);
}

.help-companies-tab-top .nav button.active span {
    font-weight: 700;
}

.help-companies-tab-top .nav button.active span,
.help-companies-tab-top .nav button:hover span {
    color: var(--white);
}

.help-companies-tab-body-row {
    --bs-gutter-x: 30px;
    --bs-gutter-y: 32px;
}

.help-companies-tab-body-box {
    padding: 71px 11px 27px;
    background-color: #F7F9F6;
}

.help-companies-tab-text-box {
    padding: 30px 15px 35px;
    background-color: var(--white);
    margin: 45px 13px 0;
}

.help-companies-tab-text-box h4 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5em;
    text-align: center;
    text-transform: uppercase;
    color: var(--black);
    padding-bottom: 9px;
}

.help-companies-tab-text-box a {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
    color: var(--black);
    text-align: center;
    text-decoration: underline;
}

.help-companies-tab-text-box a:hover {
    color: var(--yellow);
}

.help-companies-tab-text-box-links {
    gap: 3px;
}

.pagination-sec {
    width: 100%;
    margin-top: 55px;
}

.pagination-sec ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-sec ul li {
    margin: 0 4px;
}

.pagination-sec ul li a {
    display: flex;
    width: 32px;
    height: 32px;
    font-size: 14px;
    font-weight: 700;
    color: #202020;
    align-items: center;
    justify-content: center;
    border: 1px solid #DFE3E8;
    border-radius: 4px;
}

.pegination-left-arrow {
    background-color: #241B02;
    color: #fff !important;
    border-color: #241B02;
}

.pegination-right-arrow {
    background-color: #747677;
    color: #fff !important;
    border: 1px solid #DFE3E8;
}

.pagination-sec ul li a.active {
    border: 1px solid #241B02;
}

/* help-companies-tab-sec end */
.footer-menu ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu ul li a {
  color: #fff; /* adjust for your footer color */
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-menu ul li a:hover {
  color: #ffce00; /* hover color */
}

@media (max-width: 767px) {
  .footer-menu ul {
    grid-template-columns: 1fr; /* one column on mobile */
  }
}


/*blog page/

/* blog page */

.blog-banner-content {
    text-align: center;
    padding: 170px 0 188px;
}

.banner-title h2 {
    color: var(--white);
}

.blog-bottom-top-details-box {
    margin-bottom: 47px;
}

.blog-bottom-top-details-box-img img {
    width: 100%;
}

.blog-sec {
    padding: 75px 0;
}

.blog-bottom-top-details-box-info span,
.blog-box-info span {
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: #414040;
    padding-top: 27px;
    display: block;
}

.blog-bottom-top-details-box-info h3 a,
.blog-box-info h4 a {
    font-weight: 700;
    font-size: var(--font27);
    color: var(--black);
    padding: 14px 0 20px;
}

.blog-bottom-top-details-box-info p,
.blog-box-info p {
    max-width: 737px;
    font-weight: 400;
    font-size: var(--font17);
    color: var(--black22);
    padding-bottom: 22px;
}

.blog-box-img img {
    width: 100%;
}

.blog-box-info span {
    padding-top: 33px;
}

.blog-box-info h4 a {
    font-size: var(--font20);
    padding: 14px 0;
}

.blog-box-info p {
    max-width: 407px;
    padding-bottom: 14px;
}

.blog-box {
    width: 100%;
    height: 100%;
}

.blog-box-inner {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-bottom-down-list-sec-row {
    gap: 24px 0;
}

.pagination-sec {
    width: 100%;
    margin-top: 60px;
}

.pagination-sec ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-sec ul li {
    margin: 0 2px;
}

.pagination-sec ul li a {
    display: flex;
    width: 32px;
    height: 32px;
    font-size: 14px;
    font-weight: bold;
    color: #241B02;
    align-items: center;
    justify-content: center;
    border: 1px solid #DFE3E8;
    border-radius: 4px;
}

.pagination-sec ul li a.active {
    border-color: #241B02 !important;
}

.left-arrow {
    background-color: #0655BE;
    color: #fff !important;
    border-color: #0655BE;
}

.right-arrow {
    background-color: #747677;
    color: #fff !important;
    border-color: #747677;
}

.search-sec img {
    position: absolute;
    left: 11px;
    top: 14px;
}

.search-sec {
    width: 100%;
    position: relative;
}

.search-sec input {
    padding-left: 40px;
    color: #2B2A2A;
    border: 0;
    box-shadow: 0px 4px 44px 0px #0000000D;
}

.blog-about-us-section h4 {
    padding-bottom: 16px;
}

.feature-right h3 {
    font-family: var(--bodyFont);
    font-weight: 500;
    font-size: var(--font16);
    line-height: 15px;
    color: var(--black);
    padding-bottom: 10pxs;
}

.feature-right p {
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: #414040;
}

.blog-right-about-us {
    margin-bottom: 25px;
}

.blog-about-us-section {
    background-color: #FBFCFF;
    border: 1px solid #f0f0f0;
    border-radius: 4px;
    padding: 30px 20px 34px;
    margin-top: 33px;
}

.feature-list ul li {
    margin-bottom: 15px;
}

.feature-list ul li a {
    width: 100%;
    display: flex;
    align-items: center;
    background: #FFFFFF;
    padding: 15px;
    box-shadow: 0px 4px 44px 0px #0000000D;
}

.feature-right {
    width: 60%;
    padding-left: 10px;
}

.feature-left {
    width: 40%;
}

@media(max-width: 1199px) {
    .blog-sec {
        padding: 50px 0;
    }

    .blog-banner-content {
        text-align: center;
        padding: 100px 0;
    }
}

@media(max-width: 767px) {
    .blog-banner-content {
        text-align: center;
        padding: 70px 0;
    }

    .blog-bottom-top-details-box {
        margin-bottom: 20px;
    }

    .blog-bottom-top-details-box-info span,
    .blog-box-info span {
        padding-top: 15px;
    }

    .blog-bottom-top-details-box-info h3 a,
    .blog-box-info h4 a {
        padding: 15px 0;
    }

    .blog-bottom-top-details-box-info p,
    .blog-box-info p {
        padding-bottom: 15px;
    }

    .pagination-sec {
        margin: 30px 0;
    }
}


.primary-btn {
        font-size: 18px;
    font-weight: 700;
    color: var(--white);
    background-color: var(--lightblue);
    text-transform: uppercase;
    padding: 16px 70px;
    position: relative;
}

.primary-btn:hover {
    color: black;
    background: white;
    transition: all 0.4s ease-in-out;
}

#search-results {
  position: absolute;
  background: #fff;
  width: 100%;
  border: 1px solid #eee;
  max-height: 300px;
  overflow-y: auto;
  z-index: 10;
}

.live-search-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.live-search-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #f2f2f2;
  padding: 10px;
}

.live-search-list li img {
  width: 50px;
  height: 50px;
  object-fit: cover;
}

.search-item-content h4 {
  font-size: 14px;
  margin: 0;
}

.search-item-content span {
  font-size: 12px;
  color: #888;
}

/*blog page*/


#search-results img{
	position: unset;	
}

.live-search-list li a{
	display: flex;
	align-items: center;
}

.search-item-content{
	margin-left: 15px;
}

.form-submit{
	margin-top: 25px;
}



/* email marketing start */

.email-marketimg-inner {
    max-width: 930px;
    margin: 0 auto;
}

.email-marketimg-left-img img {
    max-width: 300px;
}

.email-marketimg-right-text h2 {
    font-weight: 600;
    font-size: 32px;
    line-height: 45px;
    text-transform: uppercase;
    text-align: start;
    padding-bottom: 24px;
}

.email-marketimg-right-text p {
    padding-bottom: 20px;
}

.email-marketimg-right-text ul li {
    display: flex;
    gap: 16px;
    padding-bottom: 18px;
}

.down-right-arrow-box,
.investigationes-box .list-icon {
    width: 22px;
    height: 22px;
    background-color: #175CFB;
    color: var(--white);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.down-right-arrow-box-text {
    width: 549px;
}

.email-marketimg-bottom-text p {
    max-width: 1150px;
    font-weight: 700;
    font-size: 18px;
    line-height: 27px;
    text-align: center;
    text-transform: uppercase;
    padding-top: 48px;
}

/* email marketing end */

/* your project start */

.your-project {
    width: 100%;
    height: 100%;
    background-image: url(../img/inner-bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 55px 0;
}

.your-project-left h3 {
    max-width: 495px;
    font-weight: 600;
    font-size: 40px;
    line-height: 45px;
    text-transform: uppercase;
    color: var(--white);
    padding-bottom: 25px;
}

.your-project-left p {
    color: var(--white);
}

.your-project-getbtn {
    display: flex;
    justify-content: end;
}

.your-project .row {
    align-items: center;
}

.your-project {
    margin-top: 80px;
}

/* your project end */

/* Unrivalled Levels of Service start  */

.unrivalled-service {
    margin: 80px 0 100px;
}

.unrivalled-service-title {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.unrivalled-service-title h2 {
    font-weight: 600;
    font-size: 32px;
    line-height: 45px;
    text-transform: uppercase;
    padding-bottom: 24px;
}

.unrivalled-service-title p {
    max-width: 803px;
    padding-bottom: 41px;
}

.unrivalled-service-box {
    height: 100%;
    background-color: #F7F9F6;
    border: 1px solid #EDEDED;
    padding: 50px 30px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.unrivalled-service-box-text h4 {
    max-width: 260px;
    font-weight: 600;
    font-size: 19px;
    line-height: 21px;
    padding-bottom: 16px;
}

.unrivalled-service-box-text p {
    padding-bottom: 25px;
}

.read-more-btn a {
    font-weight: 500;
    font-size: 16px;
    line-height: 21px;
    color: var(--lightblue);
}

.read-more-btn a:hover {
    color: var(--yellow);
}

.unrivalled-service .row {
    --bs-gutter-x: 30px;
    --bs-gutter-y: 30px;
}

/* Unrivalled Levels of Service end */

/* pricing section start*/

.pricing-section h2 {
    margin-bottom: 30px;
    font-weight: 600;
}

.pricing-section {
    padding: 60px 20px;
}

.pricing-table {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.price-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    flex: 1 1 300px;
    max-width: 350px;
    text-align: center;
    transition: 0.3s;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.price-card:hover {
    transform: translateY(-8px);
}

.price-header {
    background: var(--sky);
    color: #fff;
    padding: 25px 15px;
}

.price-header h3 {
    margin: 10px 0 5px;
    font-size: 1.3rem;
    letter-spacing: 0.5px;
}

.price-header .price {
    font-size: 2rem;
    font-weight: 700;
}

.price-header .price span {
    font-size: 1rem;
    font-weight: 400;
}

.price-body {
    padding: 25px;
}

.price-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.price-body li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.price-body li:last-child {
    border-bottom: none;
}

.price-body li i {
    color: #28a745;
    margin-right: 8px;
}

.price-body li.off i {
    color: #dc3545;
}

.price-footer {
    padding: 20px;
}

.price-footer a {
    display: inline-block;
    background: var(--sky);
    color: #fff;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.price-footer a:hover {
    background: var(--yellow);
}

/* priceing sec end */

/* counter sec start */

.counter{
    width: 100%;
    height: 100%;
    background-image: url(../img/inner-bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 75px 0;
}

.count-box-inner {
    display: flex;
    font-weight: 700;
    font-size: 60px;
    line-height: 45px;
    text-transform: uppercase;
    color: var(--white);
    padding-bottom: 18px;
}

/* counter sec end */

/* socila-media-services-start */

.h1-title {
    text-transform: none;
}

.socila-media-services {
    padding-top: 70px;
    position: relative;
}

.socila-media-services-row {
    --bs-gutter-x: 94px;
    align-items: center;
}

.section-heading.thin-heading h3 {
    font-weight: 600;
}

.socila-media-services .section-heading {
    max-width: 100%;
}

.section-heading.social-section-heading p {
    font-weight: 400;
    font-size: 17px;
    line-height: 1.563rem;
}

.social-media-text-box .section-heading.social-section-heading p {
    text-align: start;
    font-weight: 600;
    padding-top: 20px;
}

.social-media-text-box-ul {
    display: flex;
    flex-wrap: wrap;
    margin: 30px 0 48px;
    gap: 20px;
}

.social-media-text-box-ul li {
    display: flex;
    align-items: center;
    gap: 11px;
}

.social-media-text-box-ul li .list-icon {
    width: 22px;
    height: 22px;
    background-color: var(--lightblue);
    border-radius: 9px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-media-text-box-ul li .list-icon i {
    color: var(--white);
    rotate: 45deg;
    font-size: 13px;
}

.social-media-button {
    margin-bottom: 90px;
}

/* socila-media-services-end */

/* professionals-tools-sec start */

.professionals-tools-sec {
    background-color: #F7F9F6;
    padding: 75px 0;
}

.professionals-tools-sec .section-heading {
    max-width: 100%;
}

.professionals-tools-sec .section-heading p {
    padding-top: 15px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.card {
    background-color: transparent;
    border: 1px solid #EDEDED;
    padding: 60px 31px;
    border-radius: 5px;
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: center;
}

/* Circular progress container */
.progress-wrap {
    width: 130px;
    height: 130px;
    flex: 0 0 130px;
    display: flex;
    align-items: center;
    justify-content: center
}

.progress-svg {
    width: 130px;
    height: 130px;
    transform: rotate(-90deg);
}

svg circle{
    border: 1px solid #FFB300;
}

svg circle.track {
    fill: none;
    stroke: #f1f5f9;
    stroke-width: 4px;
}

svg circle.outer,
svg circle.inner {
    fill: none;
    stroke: #FFB300;
    stroke-width: 3px;
    opacity: 1;
}

svg circle.inner {
    stroke-width: 2px;
}

svg circle.track {
    fill: none;
    stroke-width: 4px;
}

svg circle.fill {
    fill: none;
    stroke-width: 4px;
    /* stroke-linecap: round; */
    transition: stroke-dashoffset 1.25s cubic-bezier(.2, .8, .2, 1);
}

.content h3 {
    font-size: 19px;
    font-weight: 600;
    line-height: 1.188rem;
}

.content p {
    margin: 20px 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.313rem;
    color: var(--black);
}

.content a {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.313rem;
    color: var(--lightblue);
    &:hover{
        color: var(--yellow);
    }
}

/* colors */
.c-amber .fill {
    stroke: #FFB300;
}

.c-amber circle.track{
    stroke: #FFF2D3;
}

.c-teal .fill {
    stroke: var(--lightblue);
}

.c-teal circle.track{
    stroke: #E3FBFF;
}

.c-teal circle.outer,
.c-teal circle.inner {
    stroke: var(--lightblue);
}

.c-green .fill {
    stroke: #43A047;
}

.c-green circle.track{
    stroke: #F0FFF1;
}

.c-green circle.outer,
.c-green circle.inner {
    stroke: #43A047;
}

.c-red .fill {
    stroke: #C40602;
}

.c-red circle.track{
    stroke: #FFF1F0;
}

.c-red circle.outer,
.c-red circle.inner {
    stroke: #C40602;
}

/* percentage center */
.percent {
    position: absolute;
    font-weight: 700;
    font-size: 22px;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%);
}

/* professionals-tools-sec end */


/* -- See How Well Your Page is Optimized start -- */

.page-optimized-sec{
    padding: 76px 0 110px;
}

.page-optimized-sec .section-heading{
    max-width: 100%;
    text-align: center;
}

.page-optimized-sec .section-heading p{
    padding-top: 15px;
}

.social-section-heading p.strong{
    font-weight: 600;
}

.page-optimized-form{
    box-shadow: 0px 4px 44px 0px #0000001A;
    margin-top: 39px;
}

.contact-us-form-input input::placeholder, .contact-us-form-input textarea::placeholder{
    color: var(--black)
}

/* -- See How Well Your Page is Optimized end -- */


/* investigationes section start */

.investigationes-text{
    display: flex;
    justify-content: center;
    padding-bottom: 33px;
}

.investigationes-box .list-icon{
    background: var(--lightblue);
}

.investigationes-box{
    display: flex;
    gap: 16px;
    background-color: #F7F9F6;
    border: 1px solid #EDEDED;
    border-radius: 5px;
    padding: 36px 33px;
}

/* investigationes section end */

/* -- Investigationes demonstraverunt lectores legere me lius quod saepius. start -- */

.Investigationes-sec {
    padding: 90px 0;
}

.Investigationes-sec .social-media-text-box .section-heading.social-section-heading p {
    text-align: start;
    font-weight: 400;
    padding: 24px 0;
}

.Investigationes-sec .social-media-text-box .social-media-button {
    margin-bottom: 0;
}

.down-right-arrow-box-text:hover{
    color: var(--yellow);
}

/* -- Investigationes demonstraverunt lectores legere me lius quod saepius. end -- */

.our-case-studies-slide{
    margin-top: 40px;
}


/* Website-Analysis start */

.Website-Analysis-row{
    --bs-gutter-x: 60px;
}

.Website-Analysis-row .help-companies-tab-body-box{
    padding: 41px 20px 45px;
}

/* Website-Analysis end */

.investigationes{
    padding: 22px 0 90px;
}

/* -- Our Search Engine Optimization Core Services Include: start -- */

.search-engine-service-row{
    --bs-gutter-x: 30px;
    padding-top: 34px;
}

.search-engine-service-row .unrivalled-service-box{
    background-color: var(--white);
    flex-direction: column;
    align-items: start;
    padding: 27px 38px 23px 32px;
    border-radius: 5px;
    gap: 21px;
}

.search-engine-service-row .unrivalled-service-box .unrivalled-service-box-img{
    width: 54px;
    height: 54px;
}

.search-engine-service-button{
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 42px;
}

.search-engine-service-button .tertiary-button{
    padding: 16px 38px;
}

/* -- Our Search Engine Optimization Core Services Include: end -- */


/* 08-11-25 */

/* -- Full Services of Our Digital Agency start -- */

.digital-agency-sec {
    position: relative;
}

.digital-agency-box-img {
    width: 134px;
    height: 135px;
    border: 1px solid #EDEDED;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.digital-agency-box-img img {
    width: 100%;
    max-width: 96px;
}

.digital-agency-row {
    --bs-gutter-x: 30px;
    --bs-gutter-y: 30px;
    justify-content: center;
}

.digital-agency-row .unrivalled-service-box-text {
    width: 72%;
}

.digital-agency-row .unrivalled-service-box {
    padding: 30px 70px 35px 26px;
}

.digital-agency-sec .unrivalled-service-title h2 {
    max-width: 500px;
}

.digital-agency-sec .unrivalled-service-title p {
    max-width: 640px;
    font-weight: 500;
}

/* -- Full Services of Our Digital Agency end -- */

/* -- consultation links start -- */

.consultation-links-sec {
    padding: 55px 0 59px;
}

.consultation-links-row {
    --bs-gutter-y: 30px;
    padding-top: 0;
}

.consultation-links-row .unrivalled-service-box{
    align-items: center;
    padding: 36px 32px 30px 33px;
}

.consultation-links-row .unrivalled-service-box-text{
    text-align: center;
}

.consultation-links-row .unrivalled-service-box-text h4{
    margin: 0 auto;
}

.consultation-links-row .unrivalled-service-box .unrivalled-service-box-img {
    width: 70px;
    height: auto;
}

.consultation-links-row .unrivalled-service-box-text h4{
    transition: all 0.3s ease-in-out;
    &:hover{
        color: var(--yellow);
    }
}

/* -- consultation links end -- */

/* -- Our Product Based Services start -- */
.our-product-based-services-sec .section-heading{
    max-width: 690px;
}

.our-product-based-services-sec .section-heading h3{
    max-width: 500px;
    margin: auto;
    text-align: center;
}

.our-product-based-services-sec .section-heading p{
    font-weight: 500;
    padding: 26px 0 35px;
}


/* -- Our Product Based Services end -- */



.service-package-sec .unrivalled-service-box-img img {
    max-width: 100px;
}

/* ppc section */

.ppc-right-para li {
    display: flex;
    gap: 16px;
    padding-bottom: 15px;
}

.ppc-right-para {
    padding: 35px 0 15px;
}

.ppc-right-icon {
    background-color: var(--lightblue);
}

.ppc-advertising {
    background-color: #F7F9F6;
    padding: 55px 0;
    margin-top: 86px;
}

.ppc-advertising .row {
    --bs-gutter-x: 30px;
    --bs-gutter-y: 30px;
}

.ppc-counter .count-box p {
    max-width: 200px;
}

.ppc-our-case-studies,
.our-valuable-clients {
    margin: 85px 0;
}

.our-valuable-clients-title {
    display: flex;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    align-items: center;
}

.our-valuable-clients .our-valuable-clients-title {
    max-width: 100%;
}

.our-valuable-clients-title p {
    max-width: 875px;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    text-align: center;
    padding-bottom: 41px;
}

.our-valuable-clients .row {
    --bs-gutter-x: 110px;
}


/* 19-11-25 */

/* our-client-page start=================== */

/* customers-worldwide-sec start */

.customers-worldwide-sec {
    position: relative;
    padding-bottom: 120px;
}

.customers-worldwide-title {
    max-width: 100%;
}

.customers-worldwide-title h3 {
    max-width: 610px;
}

.customers-worldwide-title p {
    max-width: 100%;
}

.thin-para p {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.435rem;
}

.customers-worldwide-tab-top .nav button span {
    font-size: 17px;
    font-weight: 400;
    line-height: 23px;
    text-transform: capitalize;
    text-align: center;
    color: var(--black);
}

.customers-worldwide-tab-top .nav button,
.customers-worldwide-tab-top .nav button.active,
.customers-worldwide-tab-top .nav button:hover {
    background: #F7F9F6;
    border: 1px solid var(--white);
}

.customers-worldwide-tab-top .nav button.active,
.customers-worldwide-tab-top .nav button:hover {
    border: 1px solid #DFDFDF;
}

.customers-worldwide-tab-top .nav button.active span {
    font-weight: 400;
}

.customers-worldwide-tab-top .nav button.active span,
.customers-worldwide-tab-top .nav button:hover span {
    color: var(--black);
}

.customers-worldwide-tab-top .nav button {
    padding: 12px 35px;
    margin-right: 11px;
}

.customers-worldwide-tab-body-row {
    --bs-gutter-y: 41px;
}

.help-companies-tab-body-box {
    height: 100%;
}

.customers-worldwide-tab-body-row .help-companies-tab-img-box {
    display: flex;
    justify-content: center;
    text-align: center;
}

.customers-worldwide-tab-body-row .help-companies-tab-body-box p {
    text-align: center;
}

.customers-worldwide-tab-body-row .help-companies-tab-text-box {
    padding: 30px 15px;
    margin: 35px 0 29px;
}

.help-companies-button-box {
    text-align: center;
}

.help-companies-button-box .tertiary-button {
    padding: 16px 26px;
}

.customers-worldwide-tab-body-row .help-companies-tab-body-box {
    padding: 53px 11px 44px;
}

/* customers-worldwide-sec end */

/* our-client-page end================ */

/* Free Website SEO Analysis start */

.seo-analysis-sec {
    position: relative;
}

.seo-analysis-form {
    box-shadow: 0px 4px 44px 0px #0000001A;
    margin: 51px 0 11px;
}

.seo-analysis-form .send-btn {
    justify-content: start;
}

/* Free Website SEO Analysis end */

/* valuable-clients start */

.seo-valuable-clients {
    margin: 0 0 114px !important;
}

/* valuable-clients end */

/* pricing-sec-start */

.pricing-sec {
    margin: 9px 0;
    position: relative;
}

.pricing-img-box {
    width: 148px;
    height: 148px;
    border: 1px solid #D5D5D5;
    background-color: var(--white);
    border-radius: 50%;
    align-items: center;
}

.pricing-row .help-companies-tab-body-box.text-flex {
    justify-content: start;
}

.pricing-row .help-companies-tab-text-box {
    width: 100%;
    border-radius: 12px;
    padding-bottom: 50px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-row .help-companies-tab-text-box ul li p {
    display: inline;
    position: relative;
}

.pricing-row .help-companies-tab-text-box ul li p::after {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--black);
    position: absolute;
    left: -14px;
    top: 6px;
}

.pricing-row .help-companies-tab-text-box p span {
    font-weight: 700;
}

.pricing-row .help-companies-button-box {
    margin-top: -57px;
}

.pricing-row.customers-worldwide-tab-body-row .help-companies-tab-body-box {
    padding-top: 42px;
}

/* pricing-sec-end */

.clients-about-us-slider-box-inner {
    border: 1px dotted var(--grey4);
}

.testimonials-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Foundation of the Company start */

.foundation-company {
    background-color: #F0FDFF;
    padding: 49px 20px 73px;
    margin-top: 60px;
}

.foundation-company-inner {
    max-width: 902px;
    margin: 0 auto;
}

.foundation-company-title p {
    font-family: var(--montserrat);
    font-weight: 600;
    font-size: 18px;
    line-height: 34px;
    text-align: center;
    text-transform: uppercase;
    color: var(--sky);
    padding-bottom: 20px;
}

.foundation-company-title h2 {
    max-width: 400px;
    font-weight: 600;
    font-size: 32px;
    line-height: 34px;
    text-align: center;
    text-transform: uppercase;
    color: var(--black);
    padding-bottom: 16px;
}

.foundation-company-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.our-agency-right p {
    padding-bottom: 20px;
}

.our-agency-right p:last-child {
    padding: 0;
}

.foundation-company-inner .row {
    --bs-gutter-x: 75px;
    align-items: center;
}

/* Foundation of the Company end */

/* We Work for Your Profit start */

.we-work {
    padding: 80px;
}

.up-down-slider-img {
    width: 478px;
    margin: 0 auto;
    padding: 46px 0 35px;
}

.our-agency-read-btn a {
    padding: 20px 32px;
}

/* container sizing and vertical behaviour */
.up-down-slider {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.swiper-container {
    height: 350px;
}

/* pagination dots on right, vertically centered */
.swiper-pagination {
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    left: auto !important;
    width: 10px;
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #e6eef0;
    opacity: 1;
    margin: 6px 0 !important;
    border-radius: 50%;
}

.swiper-pagination-bullet-active {
    background: #16989a;
}

/* up/down circular nav buttons on right */
.swiper-button-next,
.swiper-button-prev {
    width: 27px;
    height: 27px;
    border-radius: 50%;
    background: #ffffff;
    background-color: var(--sky);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(16, 24, 40, 0.08);
    position: absolute;
    right: 18px;
    left: auto;
}

/* position them: prev (up) above next (down) */
.swiper-button-prev {
    top: 44%;
    transform: translateY(-147%);
}

.swiper-button-next {
    top: 61%;
    transform: translateY(-57%);
}

/* change default arrow icons size */
.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 9px;
    font-weight: 700;
    color: var(--white);
    transform: rotate(90deg);
}



.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
    border: 1px solid var(--black);
    background-color: var(--white);
    opacity: 1;
}

.swiper-button-prev.swiper-button-disabled::after,
.swiper-button-next.swiper-button-disabled::after {
    font-weight: 700;
    color: var(--black);
}

.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical>.swiper-pagination-bullets {
    right: 23px;
    top: 41%;
    transform: translate3d(0px, -41%, 0);
}

.swiper-pagination-bullet {
    width: 4px;
    height: 4px;
    background: #3F3D3D;
    opacity: 1;
    margin: 6px 0 !important;
    border-radius: 50%;
}

.swiper-pagination-bullet-active {
    height: 15px;
    background-color: #252525;
    border-radius: 24px;
}

/* We Work for Your Profit end */

/* Meet with Our Best Experts start */
.our-best-experts-title {
    max-width: 100%;
}

.our-best-experts-title h2 {
    max-width: 100%;
    font-weight: 600;
    font-size: 32px;
    line-height: 34px;
    text-align: center;
    text-transform: uppercase;
}

.our-best-experts-title p {
    font-family: var(--montserrat);
    font-weight: 400;
    font-size: 17px;
    line-height: 23px;
    text-align: center;
}

.our-best-experts-box-inner {
    border: 1px solid #A6F3FF;
    background-color: #E5F9FD;
    box-shadow: none;
    padding: 42px 20px 55px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.our-best-experts-img img {
    width: 80px;
}

.our-best-experts-img {
    width: 148px;
    height: 148px;
    background-color: var(--white);
    border-radius: 50%;
    border: 1px solid #D5D5D5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.our-best-experts-box-inner h5 {
    font-weight: 700;
    font-size: 20px;
    line-height: 23px;
    text-align: center;
    text-transform: uppercase;
    padding: 27px 0 13px;
    text-shadow: 0 0 4px rgba(0, 255, 255, 0.6);
}

.our-best-experts-box-inner p {
    font-family: var(--montserrat);
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
    text-align: center;
    text-shadow: 0 0 4px rgba(0, 255, 255, 0.6);
}

.our-best-experts-icons ul li a {
    border: 1px solid var(--sky);
}

.our-best-experts-icons ul li a i {
    color: var(--sky);
}

.our-best-experts-icons {
    margin-top: 19px;
}

.our-best-experts-box-slider .slick-arrow {
    position: absolute;
    bottom: 0;
    transform: translateY(-50%);
    z-index: 5;
    font-size: 0;
    border: none;
    width: 27px;
    height: 27px;
    background-color: var(--sky);
    border-radius: 50%;
    padding: 0px;
    transition: all 0.3s ease-in-out;
}

.our-best-experts-box-slider .slick-prev {
    left: 45%;
    bottom: -8px;
    transform: translate(-45%, 0);
}

.our-best-experts-box-slider .slick-next {
    left: 55%;
    bottom: -8px;
    transform: translate(-55%, 0);
}

.our-best-experts-box-slider .slick-prev i,
.our-best-experts-box-slider .slick-next i {
    color: var(--white);
    font-size: 12px;
}

.our-best-experts-box-slider .slick-prev:hover,
.our-best-experts-box-slider .slick-next:hover {
    color: transparent;
    outline: none;
    background: transparent !important;
    border: 1px solid #353434 !important;
    color: #292F36;
}

.our-best-experts-box-slider .slick-prev:hover i,
.our-best-experts-box-slider .slick-next:hover i {
    color: var(--black);
}

.our-best-experts-box-slider .slick-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.our-best-experts-box-slider .slick-dots li button {
    border: none;
    outline: none;
    font-size: 0;
    width: 4px;
    height: 4px;
    background: #353434;
    border-radius: 50%;
    transition: 0.2s;
    padding: 0;
    margin: 0 3px;
}

.slick-dots li.slick-active button {
    width: 15px;
    height: 4px;
    background-color: #252525;
    border-radius: 24px;
}


/* Meet with Our Best Experts end */


/* our-vision-start---- */

.our-vision-wrapper {
    width: 100%;
    max-width: 936px;
    margin: 0 auto;
}

.our-vision-row {
    --bs-gutter-x: 80px;
    align-items: center;
}

.our-vision-text-box h3 {
    font-size: 32px;
    margin-bottom: 30px;
}

/* our-vision-end----- */

/* 28-11-25 */


/* web development start */

.request-btn {
    margin-top: 30px;
}

.hire-a-web-dev {
    padding: 90px 0 0;
}

.web-dev-service-inner,
.dev-techno-sec .social-section-heading {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.web-dev-service {
    padding: 50px 0;
}

.web-dev-service-inner h2 {
    max-width: 676px;
    font-weight: 600;
    font-size: 32px;
    line-height: 34px;
    text-transform: uppercase;
    color: var(--white);
}

.web-dev-service-inner span {
    font-family: var(--montserrat);
    font-weight: 700;
    font-size: 29px;
    line-height: 33px;
    color: var(--yellow);
    display: block;
    padding: 22px 0;
}

.dev-techno-sec .social-section-heading h3 {
    max-width: 822px;
}

.dev-techno-sec-row {
    --bs-gutter-y: 30px;
}

.we-provide-inner .row {
    --bs-gutter-x: 30px;
    --bs-gutter-y: 22px;
}

.we-provide .section-heading {
    max-width: 922px;
}

.we-provide-inner {
    padding-top: 55px;
}

.why-with-us {
    padding: 100px 0;
}

.why-with-us-left p {
    max-width: 563px;
    padding: 37px 0;
}

.why-with-us-icon {
    width: 18px;
    height: 18px;
    background-color: var(--lightblue);
    border-radius: 50%;
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-with-us-icon i {
    font-size: 12px;
    margin: 0;
}

.why-with-us-text h5 {
    font-weight: 700;
    font-size: 18px;
    line-height: 25px;
}

.why-with-us-text p {
    padding: 10px 0 0;
}

.why-with-us-left ul li {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
}

.why-with-us-left ul li:last-child {
    margin: 0;
}

.why-with-us-text {
    max-width: 91%;
}

.why-with-us-inner .row {
    align-items: center;
}

.web-dev-free-btn {
    margin-top: 50px;
}

.why-hire-us {
    background-color: #F7F9F6;
    padding: 82px 0 62px;
}

.why-hire-us-title h2 {
    max-width: 925px;
    font-weight: 600;
    font-size: 32px;
    text-align: center;
    text-transform: uppercase;
    padding-bottom: 27px;
}

.why-hire-us-title p {
    max-width: 766px;
    padding-bottom: 36px;
}

.why-hire-us-text p {
    max-width: 100%;
}

.we-provide {
    margin-top: 90px;
}


/* web development end */


/* 29-11-25 */

/* content-marketing-tab start */
.content-marketing-tab-sec {
    padding: 119px 0 79px;
}

.content-marketing-faq-row {
    --bs-gutter-x: 30px;
}

.seo-faq-left {
    border-radius: 21px;
    overflow: hidden;
}

.seo-faq-left .nav {
    background: #FAFAFF;
}

.seo-faq-left .nav .nav-link {
    background: transparent;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.125rem;
    color: #0655BE;
    border-bottom: 1px solid #E2E2FF;
    border-radius: 0px;
    padding: 15px 5px 16px 25px;
    text-align: left;
}

.seo-faq-left .nav .nav-link:last-child {
    border: none;
}

.seo-faq-left .nav .nav-link:last-child.active {
    border-bottom: 1px solid #E2E2FF;
}

.seo-faq-left .nav .nav-link.active {
    width: 100%;
    background: #FFFFFF;
    box-shadow: 0px 4px 4px 0px #0000000D;
    border-radius: 0;
    margin: 0;
}

.content-marketing-tab-inner h2 {
    font-size: 32px;
    font-weight: 600;
    line-height: 2.125rem;
    text-align: left;
}

.content-marketing-tab-inner p {
    line-height: 1.313rem;
    padding-top: 20px;
}

.content-marketing-tab-btn a {
    font-size: 15px;
    padding: 12px 30px;
    margin-top: 50px;
}

.full-width {
    max-width: 100%;
}

.content-marketing-solution-sec {
    margin-bottom: 13px;
}

.content-marketing-solution-sec .section-heading {
    margin-bottom: 50px;
}

.content-marketing-tab-inner h3 {
    font-weight: 700;
    text-transform: none;
}

/* content-marketing-tab end */

/* hire-content-marketing-sec start */
.hire-content-marketing-sec {
    position: relative;
}

.hire-content-marketing-sec .section-heading {
    max-width: 534px;
}

.hire-content-marketing-inner {
    max-width: 745px;
    margin: 0 auto;
    padding: 30px 0;
    gap: 20px;
}

.hire-content-marketing-inner p {
    font-size: 17px;
}

/* hire-content-marketing-sec end */

/* we-generated-sec start */
.we-generated-sec {
    margin: 0 !important;
    color: var(--white);
}

.we-generated-inner {
    max-width: 721px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 25px 0 4px;
}

.We-have-generated-content {
    width: max-content;
    gap: 18px;
}

.We-have-generated-content p {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5em;
    text-align: center;
}

/* we-generated-sec end */

/* our-approach-start */

.our-approach-row .unrivalled-service-box .unrivalled-service-box-img {
    width: auto;
    height: auto;
}

.our-approach-row .unrivalled-service-box {
    gap: 25px;
}

/* our-approach-end */
/* Content Marketing Services start */
.content-marketing-service-box{
    height: 100%;
    box-shadow: 0px 4px 44px 0px #0000000D;
    border: 1px solid #f7f7f7;
    background: linear-gradient(267.44deg, #FDFDFD 1.84%, #FFFFFF 17.76%);
    padding: 40px 20px 70px 20px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    /* justify-content: space-between; */
}
.content-marketing-service-box-icon {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 45px;
}

.content-marketing-service-box-icon span {
    font-size: 60px;
    font-weight: 500;
    line-height: 22px;
    color: #f6f6f6;
}

.content-marketing-service-box h4 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1em;
    color: #000E10;
    padding-bottom: 20px;
}

.content-marketing-service-box p{
    font-size: 15px;
    line-height: 1.4rem;
}

.content-marketing-service-box h4:hover{
    color: var(--blue);
}

.content-marketing-service-row{
    --bs-gutter-x: 30px;
    margin-top: 39px;
}

/* Content Marketing Services end */



.lackluster-content {
    background: var(--gradient);
    padding: 30px 0;
}

.align-items-center {
    align-items: center !important;
}

.lackluster-content-content h2 {
    font-weight: 400;
    font-size: 36px;
    line-height: 40px;
    color: #fff;
    padding-bottom: 35px;
    text-align: start;
}

.services-search-engines{
    background: linear-gradient(261.3deg, #54C5D1 7.5%, #26335D 93.53%);
}

.services-search-engines-box-content {
    padding: 77px 0 79px 0;
}

.services-search-engines-box-content h2 {
font-weight: 600;
font-size: 32px;
color: var(--white);
padding-bottom: 28px;
text-align: start;
}

.services-search-engines-box-img {
    width: 100%;
    height: 100%;
    position: relative;
}

.services-search-engines-box-img img {
    max-width: 836px;
    height: 558px;
    position: absolute;
    /* object-fit: contain; */
    bottom: 0;
    left: -120px;
}

.services-search-engines-box-content p {
    color: #fff;
    font-size: 18px;
    padding-bottom: 15px;
}

.request-btn{
    justify-content: start;
}

.service-search-engine-list ul li {
    position: relative;
    font-size: 18px;
    color: #fff;
    margin-bottom: 10px;
    padding-left: 20px;
}

.service-search-engine-list ul li:before {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: #fff;
    border-radius: 50%;
    top: 9px;
    left: 5px;
}


/* let-us-turn start */
.let-us-turn-inner {
    padding: 60px 20px 40px;
    border-radius: 22px;
    background-color: #F7F9F6;
}

.let-us-turn-heading h3 span,
.let-us-turn-heading.section-heading.thin-heading h3 span {
    font-size: 36px;
    font-weight: 400;
    line-height: 1em;
    text-align: center;
    text-transform: uppercase;
    display: block;
    padding-bottom: 5px;
}

.let-us-turn-para {
    max-width: 900px;
    margin: 0 auto;
    padding: 32px 0;
    gap: 12px;
}

.let-us-btn a {
    padding: 14px 36px !important;
    margin: 0 !important;
}

/* let-us-turn end */

/* content-marketing-process start */
.content-marketing-process-heading {
    max-width: 876px;
}

.section-heading.social-section-heading.content-marketing-process-heading p {
    font-size: 16px;
}

.blue-heading-para {
    font-size: 17px !important;
    font-weight: 600 !important;
    line-height: 1em !important;
    text-align: center;
    color: var(--lightblue);
}

.content-marketing-process-row {
    --bs-gutter-x: 30px;
    --bs-gutter-y: 30px;
    margin-top: 20px;
}

.content-marketing-process-box {
    height: 100%;
    background: #F7F9F6;
    border-radius: 12px;
    padding: 60px 30px 65px 60px;
}

.content-marketing-process-box h3 {
    font-weight: 700;
    padding-bottom: 10px;
}

.content-marketing-process-box ul li {
    font-size: 17px;
    font-weight: 500;
    color: #1B1B1B;
    margin: 5px 0 0 18px;
    list-style-type: disc;
}

/* content-marketing-process end */

/* 1-12-25 */

.sub-menu {
    display: none;
    padding: 12px 0 0 15px;
}



/* 03-12-25 */

/* social-media-optimization start */

.Increase-Brand-Awareness-text h4 {
    max-width: 273px;
}

.Increase-Brand-Awareness .social-section-heading h3 {
    max-width: 643px;
}

.freelancer-hireing-text .section-heading {
    max-width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.freelancer-hireing-text .section-heading p {
    text-align: start;
}

.freelancer-hireing-row {
    --bs-gutter-x: 40px;
    align-items: center;
}

.freelancer-hireing-text ul {
    display: flex;
    gap: 10px;
    flex-direction: column;
    margin-top: 32px;
}

.freelancer-hireing-text ul li {
    display: flex;
    align-items: center;
    gap: 15px;
}

.benefit-hiring-sec .section-heading h3 {
    max-width: 696px;
}

.benefit-hiring-sec .section-heading p {
    max-width: 1115px;
}

.bold-para {
    font-weight: 700;
    line-height: 1.563rem;
    text-align: center;
    padding-top: 35px;
}

.benefit-hiring-row .unrivalled-service-box {
    padding: 45px 12px 60px 13px;
    box-shadow: 0px 4px 44px 0px #0000000D;
    border: 1px solid #E8E8E8;
    border-radius: 2px;
    align-items: center;
    gap: 38px;
}

.benefit-hiring-row {
    justify-content: center;
}

.benefit-hiring-row .unrivalled-service-box h4 {
    max-width: 100% !important;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.563rem;
    text-align: center;
}

.benefit-hiring-row .unrivalled-service-box p {
    padding-bottom: 0;
    text-align: center;
}

/* social-media-optimization end */

/* app development start */

.Mobile-App-Development .social-section-heading h3 {
    max-width: 812px;
}

.Mobile-App-Development {
    background-color: transparent;
}

.hire-freelance {
    background-color: #F7F9F6;
    padding: 57px 15px;
}

.hire-freelance-title {
    max-width: 824px;
}

.hire-freelance-title h3 {
    padding-bottom: 38px;
}

.hire-freelance-text p {
    margin-bottom: 20px;
}

.hire-freelance-inner .row {
    --bs-gutter-x: 28px;
}

.our-partner-title h2 {
    max-width: 696px;
    font-weight: 600;
    font-size: 32px;
    text-transform: uppercase;
}

.our-partner-title p {
    max-width: 660px;
}

.contact-developer {
    background: var(--gradient);
    padding: 51px 0 63px;
}

.contact-developer-inner h5 {
    font-weight: 700;
    font-size: 22px;
    text-align: center;
    color: var(--white);
}

.contact-developer-inner h5 a {
    display: block;
    font-weight: 700;
    font-size: 42px;
    text-align: center;
    color: var(--yellow);
}



.contact-developer-inner p {
    max-width: 1066px;
    color: var(--white);
    text-align: center;
    margin: 20px 0 0;
}

.our-partner {
    padding: 100px 0 0 !important;
}

.our-partner-inner .row {
    align-items: end;
}

.our-partner-inner-title {
    padding: 0 0 100px;
}


.benefits-of-mob-dev .social-media-text-box .section-heading.social-section-heading p {
    padding: 20px 0 0;
}


/* app development end */

/* link-building-page-start */
/* link-building-service-sec start */
.link-icon-bg {
    width: 30px;
    height: 30px;
}

.link-icon-bg i {
    font-size: 15px;
}

.link-building-service-row {
    --bs-gutter-x: 30px;
    align-items: center;
    padding-top: 35px;
}

.link-building-service-text-box ul {
    margin: 0;
}

.link-building-service-text-box ul li {
    align-items: start;
}

.link-building-service-text-box ul li p,
.link-building-service-text-box ul li p a,
.link-building-service-text-box>p,
.link-building-service-text-box>p a {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.563rem;
    color: #171717;
    padding: 0;
}

.link-building-service-text-box ul li p a {
    font-weight: 500;
    color: #0655BE;
    text-decoration: underline;

    &:hover {
        color: var(--yellow);
    }
}

.link-building-service-text-box>p {
    font-size: 22px;
    color: var(--black);
    margin-top: 35px;
}

.link-building-service-text-box>p a {
    color: var(--black);

    &:hover {
        color: var(--yellow);
    }
}

/* link-building-service-sec end */
/* Our Link Building Services start */
.our-link-building-sec .section-heading {
    gap: 15px;
}

.our-link-building-sec .section-heading p {
    padding: 0 !important;
}

/* Our Link Building Services end */

/* Our Backlink Services Process start */

.backline-title h2 {
    font-weight: 600;
    font-size: 32px;
    text-align: center;
    text-transform: uppercase;
    padding-bottom: 23px;
}

.backline-title p {
    font-weight: 700;
    font-size: 20px;
    text-align: center;
}

.benefits-of-local-seo {
    margin: 80px 0 67px;
}

.backline-bottom {
    padding: 54px 0 0;
}

.backline-wrapper {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.backline-box {
    width: 20%;
    height: auto;
    padding: 0 10px;
}

.backline-box-inner {
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    box-shadow: 0px 4px 44px 0px #0000000D;
    padding: 0 15px 37px 15px;
}

.backline-box:first-child .backline-box-inner {
    border-bottom: 7px solid #F4436B;
}

.ribbon-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ribbon {
    position: relative;
    background: #f54267;
    color: white;
    padding: 10px 18px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 107px;
    height: 133px;
    /* clip-path: polygon(0 0, 100% 0, 100% calc(100% - 15px), 50% 100%, 0 calc(100% - 15px)); */
    clip-path: polygon(0 0, 100% 0%, 100% 70%, 52% 100%, 1% 72%);
}

.ribbon-outer {
    width: 107px;
    height: 133px;
    position: relative;
    top: -16px;
}

.ribbon-outer::before,
.ribbon-outer::after {
    content: "";
    position: absolute;
    top: 0px;
    width: 20px;
    height: 15px;
    background: #d33454;
    /* Slightly darker shade */
}

.ribbon-outer::before {
    left: -20px;
    clip-path: polygon(73% 14%, 41% 55%, 32% 119%, 107% 100%, 100% 0);
}

.ribbon-outer::after {
    right: -19px;
    clip-path: polygon(33% 24%, 57% 58%, 63% 100%, 0 100%, 0 0);
}

.backline-box:nth-child(2) .backline-box-inner .ribbon {
    background-color: #F4811D;
}

.backline-box:nth-child(2) .backline-box-inner {
    border-bottom: 7px solid #F4811D;
}

.backline-box:nth-child(2) .ribbon-outer::before {
    background-color: hsl(27.47deg 76.85% 42.35%);
}

.backline-box:nth-child(2) .ribbon-outer::after {
    background-color: hsl(27.47deg 76.85% 42.35%);
}

.backline-box:nth-child(3) .backline-box-inner .ribbon {
    background-color: #3DB87A;
}

.backline-box:nth-child(3) .backline-box-inner {
    border-bottom: 7px solid #3DB87A;
}

.backline-box:nth-child(3) .ribbon-outer::before {
    background-color: hsl(148.45deg 46.41% 40.98%);
}

.backline-box:nth-child(3) .ribbon-outer::after {
    background-color: hsl(148.45deg 46.41% 40.98%);
}

.backline-box:nth-child(4) .backline-box-inner .ribbon {
    background-color: #3078F2;
}

.backline-box:nth-child(4) .backline-box-inner {
    border-bottom: 7px solid #3078F2;
}

.backline-box:nth-child(4) .ribbon-outer::before {
    background-color: hsl(213.87deg 74.43% 42.94%);
}

.backline-box:nth-child(4) .ribbon-outer::after {
    background-color: hsl(213.87deg 74.43% 42.94%);
}

.backline-box:last-child .backline-box-inner .ribbon {
    background-color: #6517C0;
}

.backline-box:last-child .backline-box-inner {
    border-bottom: 7px solid #6517C0;
}

.backline-box:last-child .ribbon-outer::before {
    background-color: hsl(266.14deg 80.46% 34.12%);
}

.backline-box:last-child .ribbon-outer::after {
    background-color: hsl(266.14deg 80.46% 34.12%);
}

.backline-box-inner h3 {
    font-size: 17px;
    font-weight: bold;
    text-align: center;
    margin: 30px 0;
}

.backline-box-inner p {
    font-family: var(--montserrat);
    font-size: 15px;
    color: #0A0A0A;
}


/* Our Backlink Services Process end */
/* What should I look for when choosing a link building company? start */

.common-heading {
    font-weight: 600;
    font-size: 32px;
    text-transform: uppercase;
    margin: 0 0 15px;
    text-align: start;
}

.choose-link-left {
    padding-right: 60px;
}

.choose-link-listing {
    column-count: 2;
}

.choose-link-area-icon {
    width: 30px;
    height: 30px;
    background: var(--gradient);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: var(--white);
}

.choose-link-listing li {
    display: flex;
    align-items: center;
    padding-bottom: 16px;
    gap: 7px;
}

.choose-link-area {
    padding: 75px 0;
}

/* What should I look for when choosing a link building company? end  */

/* detail-number-cards start */

.detail-number-cards {
    padding-top: 70px;
}

.detail-number-cards-inner {
    position: relative;
    border-left: 1px solid #E5E5E5;
    padding: 12px 0 25px 45px;
    margin-left: 23px;
}

.detail-number-cards-inner span {
    position: absolute;
    top: 0;
    left: -23px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    background: var(--gradient);
    border-radius: 50%;
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    color: #FFFFFF;
}

.detail-number-cards-inner h5 {
    font-weight: 700;
    font-size: 22px;
    padding-bottom: 25px;
}

/* detail-number-cards end */

.imp-link-building-title h2 {
    max-width: 396px;
    font-weight: 600;
    font-size: 32px;
    text-align: center;
    text-transform: uppercase;
    padding-bottom: 33px;
}

.imp-link-building-title p {
    max-width: 1108px;
    margin-bottom: 20px;
}

.imp-link-building-bg {
    background-color: #F7F9F6;
    border-radius: 34px;
    padding: 72px 76px 54px 96px;
    margin-top: 44px;
}

.imp-link-building-bg-title h2 {
    font-weight: 600;
    font-size: 32px;
    text-align: center;
    text-transform: uppercase;
    padding-bottom: 67px;
}

.imp-link-building-sub-title h3 {
    font-size: 22px;
    font-weight: bold;
    padding-bottom: 24px;
}

.imp-link-building-sub-title {
    padding-bottom: 34px;
}

/*  How Can A UK Link Building Agency Help Grow Your Business? start */
.Backlink-Service-Agency-gap {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.Backlink-Service-Agency h3 {
    font-weight: 700;
}

.Backlink-Service-Agency p {
    color: #181818;
    padding: 20px 0 25px;
}

.Backlink-Service-Agency>a {
    font-size: 17px;
    color: #0655BE;

    &:hover {
        color: var(--yellow);
    }
}

/*  How Can A UK Link Building Agency Help Grow Your Business? end */
/* link-business-tab-sec star */
.link-business-tab-sec {
    padding-top: 0 !important;
}

.seo-faq-left .nav {
    background: #F9F9F9;
}

.seo-faq-left .nav .nav-link {
    color: var(--black);
}

/* link-business-tab-sec end */
/* service-include-tab-sec start */
.service-include-tab-sec .section-heading {
    max-width: 100%;
    text-align: center;
}

.service-include-tab-row {
    --bs-gutter-x: 60px;
    align-items: center;
    padding-top: 41px;
}

.service-include-tab-row .seo-faq-left .nav .nav-link {
    padding: 25px 5px 25px 30px;
}

/* service-include-tab-sec end */
/* philippines-based-sec start */
.philippines-based-sec {
    background: var(--gradient);
    padding: 55px 0;
    color: var(--white);
}

.philippines-based-sec .section-heading {
    max-width: 676px;
}

.philippines-based-sec .section-heading h3 {
    font-size: 36px;
    text-align: center;
    text-transform: capitalize;
}

.link-building-company-box {
    padding: 55px 0;
}

.link-building-company-box-row {
    --bs-gutter-x: 68px;
    align-items: center;
}

.link-building-company-title {
    padding-bottom: 28px;
}

.link-building-company-title:last-child {
    padding-bottom: 0;
}

.link-building-company-title h4 {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.5rem;
    padding-bottom: 18px;
}

.link-building-company-title p {
    font-size: 17px;
    line-height: 1.563rem;
}

.link-building-company-title ul {
    padding-left: 25px;
}

.link-building-company-title ul li {
    list-style-type: disc;
}

.our-customers h3 {
    font-size: 25px;
    font-weight: 700;
    line-height: 1.563rem;
    text-transform: capitalize;
    padding-bottom: 40px;
    text-align: center;
}

.our-customers ul li {
    font-size: 60px;
    margin-bottom: 52px;
    font-weight: 700;
    line-height: 1em;
    color: var(--yellow);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.our-customers ul li span {
    font-size: 20px;
    line-height: 1em;
    font-weight: 500;
}

.link-building-company-para {
    max-width: 900px;
    margin: 0 auto;
}

/* philippines-based-sec end */

/* link-building-page-end */



/* 05-12-25 */

/* Contact the team today for advice on your digital marketing campaign start */

.link-buliding-form__wrap {
    background: var(--gradient);
    border-radius: 18px;
    padding: 55px 90px;
}

.link-buliding-form-left h2 {
    color: var(--white);
    font-weight: 700;
    font-size: 36px;
    text-align: start;
}

.link-buliding-form-left p {
    color: var(--white);
    margin: 20px 0;
}

.call-us-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.link-buliding-form__flex {
    align-items: center;
}

.link-buliding-form-left {
    padding-right: 40px;
}

.call-us-wrapper figure {
    display: block;
    max-width: 90px;
    margin: 0;
}

.call-us-detl-text {
    width: calc(100% - 90px);
    padding-left: 30px;
}

.call-us-detl-text span {
    display: block;
    font-weight: 700;
    font-size: 17px;
    line-height: 1;
    color: #FFFFFF;
    margin: 0 0 15px;
}

.call-us-detl-text a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #FFFFFF;
    border-radius: 2px;
    font-weight: 700;
    font-size: clamp(15px, 1.181vw, 17px);
    line-height: 1;
    color: #000000;
    padding: 15px 22px;
}

.Link-Building-Services-form {
    background: #FFFFFF1A;
    border: 1px solid #FFFFFF3B;
    border-radius: 9px;
    padding: 17px 28px;
}

.Link-Building-Services-form h4 {
    font-size: 23px;
    line-height: 25px;
    font-weight: bold;
    color: #ffffff;
    padding-bottom: 20px;
}

.Link-Building-Services-form input,
.Link-Building-Services-text {
    margin-bottom: 15px;
}

.Link-Building-Services-form input::placeholder,
.Link-Building-Services-text::placeholder {
    font-size: 14px;
    color: var(--black);
}

.Link-Building-Services-btn {
    width: 100%;
    background-color: #0655be;
    border-radius: 4px;
    border: 0;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    text-transform: capitalize;
}

.call-us-detl-text a i {
    color: rgba(6, 40, 133, 1);
}


/* Contact the team today for advice on your digital marketing campaign end */
/* Why Partner with a Professional Link Building Agency? start */

.link-bulding-agency__right {
    margin-top: 25px;
}

.link-bulding-agency__right p {
    margin: 0 0 20px;
}

.link-bulding-agency__right ul li {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.link-bulding-agency-right-text {
    width: 100%;
}

.link-bulding-agency__right-icon i {
    font-size: 13px;
}

/* Why Partner with a Professional Link Building Agency? end */
/* How Does Professional Link Building Drive SEO Rankings and Traffic? start */

.professional-link-cards {
    background: #F7F9F6;
    padding: 70px 0;
}

.professional-link-title {
    padding: 0 0 clamp(30px, 3.125vw, 45px);
}

.professional-link-title h2 {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 0 20px;
}

.prof-link-cards-flex {
    gap: 25px 0;
}

.prof-link-inner {
    height: 100%;
    background: #FEFEFF;
    border: 1px solid #E6E6E6;
    border-radius: 16px;
    padding: 30px;
}

.prof-link-inner span {
    display: block;
    font-weight: 700;
    font-size: 22px;
    line-height: 1.09090908em;
    color: #000000;
    margin: 0 0 16px;
}



/* How Does Professional Link Building Drive SEO Rankings and Traffic? end */


/* Our Niche Edits -Link Building Services start */

.pakage-section {
    margin-top: 80px;
}

.pakage-wrapper {
    gap: 25px 0;
}

.pakage-detl-list-icon {
    width: 21px;
    height: 21px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    color: var(--white);
}

.primary-btn {
    background: var(--gradient);
    color: #FFFFFF;
    align-items: center;
    font-size: 15px;
    line-height: 1.2em;
    font-weight: bold;
    padding: 13px 36px;
    border: 0;
    border-radius: 0;
}

.pakage-cards {
    background: linear-gradient(267.44deg, #FDFDFD 1.84%, #FFFFFF 17.76%);
    border: 1px solid #F7F7F7;
    box-shadow: 0px 4px 44px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    padding: 44px 24px;
}

.pakage-cards:hover {
    background: var(--gradient);
    border: 1px solid #F7F7F7;
}



.pakage-cards-top {
    text-align: center;
    border-bottom: 1px solid #F7F7F7;
    padding: 0 0 15px;
    margin: 0 -24px;
}

.pakage-cards-top p {
    font-size: 20px;
    line-height: 1;
    color: #13124D;
    margin: 0 0 12px;
}

.pakage-cards-top h4 {
    font-weight: 700;
    font-size: 30px;
    line-height: 1.1em;
    color: #13124D;
}

.pakage-cards:hover .pakage-cards-top p,
.pakage-cards:hover .pakage-cards-top h4 {
    color: var(--white);
}

.pakage-detl-list {
    min-height: 244px;
    padding-left: 6px;
    margin: 24px 0 35px 0;
}

.pakage-detl-list li {
    position: relative;
    font-size: 17px;
    line-height: 20px;
    color: #13124D;
    margin-bottom: 12px;
    display: flex;
    gap: 15px;
}

.pakage-cards:hover .pakage-detl-list li {
    color: var(--white);
}



.pakage-cards:hover .pakage-detl-list li .pakage-detl-list-icon {
    background: var(--yellow);
}

.pakage-detl-list li:last-child {
    margin-bottom: 0;
}

.pakage-cards-bot a {
    display: block;
    text-align: center;
    cursor: pointer;
}

.pakage-cards-bot a:hover {
    border-color: var(--yellow);
}

.pakage-cards:hover .pakage-cards-bot a {
    background: var(--yellow);
}

/* Our Niche Edits -Link Building Services end */






/* Targeted Keyword Research for Every Stage of Your Website’s Funnel start */
.Targeted-Keyword-Research-sec .section-heading {
    max-width: 814px;
    text-align: center;
    padding-bottom: 15px;
}

.Targeted-Keyword-Research p {
    color: #181818;
    max-width: 900px;
    text-align: center;
    margin: 20px auto 0;
}

.keyword-websites-funnel {
    margin-top: 30px;
}

/* Targeted Keyword Research for Every Stage of Your Website’s Funnel end */
/* Keywords That Drive Your Business Upward start */
.sub-title {
    display: block;
    text-align: center;
    font-weight: 700;
    font-size: 17px;
    line-height: 1em;
    color: var(--lightblue);
    margin: 0 0 10px;
}

.max-hundred {
    max-width: 100%;
    text-align: center;
}

.keyword-drive-text {
    max-width: 956px;
    margin: 0 auto 41px;
}

.sub-txt {
    padding: 25px 0 21px;
}



.icon-txt-wrrp .card-innr {
    height: 100%;
    padding: 46px 30px;
    background: #FEFEFF;
    border: 1px solid #E6E6E6;
    border-radius: 16px;
    text-align: left;
}

.icon-txt-wrrp .card-innr h5 {
    font-weight: 700;
    font-size: 22px;
    color: var(--black);
    margin: 0 0 15px;
}

.icon-txt-wrrp .card-innr p {
    margin: 0 0 20px;
}

.icon-txt-wrrp .card-innr .list-unstyled-icon li {
    display: flex;
    align-items: baseline;
    gap: 9px;
}

.icon-txt-wrrp .card-innr .list-unstyled-icon li:not(:last-child) {
    margin: 0 0 15px;
}

.icon-txt-wrrp .card-innr .list-unstyled-icon li .icon {
    flex-shrink: 0;
    margin-top: 5px;
}

.icon-txt {
    max-width: 90%;
}

/* Keywords That Drive Your Business Upward end */

/* -- Rankings for Results—Not Vanity start -- */
.ranking-for-result-sec {
    padding-top: 0 !important;
}

.ranking-for-result-sec .sub-txt {
    max-width: 856px;
    margin: 0 auto;
    padding: 15px 0 35px;
}

.ranking-result-list {
    column-count: 2;
    max-width: 931px;
    margin: 0 auto;
}

.ranking-result-list li {
    margin-bottom: 30px;
}

.ranking-result-list li h6 {
    font-size: 22px;
    line-height: 1.1365em;
    font-weight: 700;
    margin: 0 0 10px;
    text-align: left;
}

.ranking-result-list li p {
    font-size: 17px;
    line-height: 1.563rem;
    color: #191919;
    text-align: left;
}

/* -- Rankings for Results—Not Vanity end -- */

/* Your Keyword Strategy Starts Here start */
.keyword-strategy-sec {
    background-position: center;
    padding: 60px 0;
}

.keyword-strategy-row {
    color: var(--white);
}

.keyword-strategy-row .left-item h2 {
    max-width: 492px;
    font-weight: 700;
    font-size: 36px;
    line-height: 2.313rem;
    text-align: left;
    text-transform: capitalize;
    margin-bottom: 33px;
}

.keyword-strategy-row .left-item p:not(:last-child) {
    margin: 0 0 16px;
}

.keyword-strategy-row .left-item h3 {
    font-weight: 700;
    text-transform: none;
}

.keyword-strategy-row .rgt-frm label {
    font-weight: 700;
    font-size: 18px;
    line-height: 1.563rem;
}

.keyword-strategy-row .rgt-frm input {
    border-radius: 9px;
    padding: 9px 28px;
}

.keyword-strategy-row .rgt-frm textarea {
    border-radius: 9px;
    padding: 14px 28px;
    height: 89px;
}

.keyword-strategy-row .rgt-frm input::placeholder,
.keyword-strategy-row .rgt-frm textarea::placeholder {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.563rem;
    color: #949292;
}

.keyword-strategy-row .rgt-frm .btn-submit {
    background: var(--yellow);
    color: var(--white);
    border: none;
    font-weight: 700;
    font-size: 15px;
    padding: 10px 0;
    width: 100%;
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: auto;
    min-height: 45px;
    transition: 0.45s ease;

    &:hover {
        background-color: var(--white);
        color: #949292;
    }
}

/* Your Keyword Strategy Starts Here end */

/* KEYWORD RESEARCH METHODS start */
.keywords-research-sec .section-heading {
    max-width: 746px;
}

.keywords-research-sec .sub-txt {
    max-width: 959px;
    margin: 0 auto;
    padding: 28px 0 47px;
}

.keywords-research-row {
    --bs-gutter-x: 30px;
    --bs-gutter-y: 30px;
}

.icon-text-cards__inner {
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background: #F7F9F6;
    border-radius: 16px;
    padding: 24px 26px;
}

.icon-text-cards__inner figure {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 76px;
    height: 76px;
    background: #FFFFFF;
    border: 1px solid #D4D4D4;
    border-radius: 50%;
    margin: 0;
}

.icon-text-cont-_box {
    width: calc(100% - 76px);
    padding-left: 24px;
}

.icon-text-cont-_box h6 {
    font-weight: 700;
    font-size: 22px;
    line-height: 1.2em;
    color: #000000;
    margin: 0 0 10px;
    text-align: left;
}

.icon-text-cont-_box p {
    text-align: left;
}

/* KEYWORD RESEARCH METHODS end */

/* OUR KEYWORD RESEARCH PROCESS start */
.keyword-process-sec .section-heading p {
    text-transform: lowercase;
    padding-bottom: 35px;
}

.section-row {
    --bs-gutter-x: 30px;
    --bs-gutter-y: 20px;
}

.section-box-inner {
    height: 100%;
    position: relative;
    overflow: hidden;
    padding: 35px 25px 30px 25px;
    background: linear-gradient(267.44deg, #FDFDFD 1.84%, #FFFFFF 17.76%);
    border: 1px solid #F7F7F7;
    box-shadow: 0px 4px 44px 0px #0000000D;
}

.section-box-icon {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 0 30px;
}

.section-box-icon img {
    margin: 30px 0 0;
}

.section-box-icon span {
    font-size: 60px;
    font-weight: 500;
    line-height: 45px;
    color: #F6F6F6;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px #91F0FF;
}

.content-heading h3 {
    padding: 0 0 20px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1em;
    text-transform: uppercase;
}

.content-heading p {
    font-size: 15px;
    color: #323131;
}

/* OUR KEYWORD RESEARCH PROCESS end */


/* NOT SURE WHERE TO START? start */

.where-to-start {
    margin-top: 80px;
}

.where-to-start-flex {
    align-items: end;
    gap: 25px 0;
}

.where-to-start-left img {
    margin: 0 auto;
}

.where-to-start-right h2 {
    font-weight: 700;
    font-size: 32px;
    text-transform: uppercase;
    margin: 0 0 5px;
    text-align: start;
}

.where-to-start-right h6 {
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2em;
    margin: 0 0 30px;
}

.where-to-start-right p {
    margin: 0 0 15px;
}

.where-to-start-right p,
.where-to-start-right p a {
    font-family: var(--montserrat);
    font-weight: 400;
    font-size: 16px;
    color: var(--black);
}

.where-to-start-right p a:hover {
    color: var(--sky);
}

.where-to-start-right .btns {
    margin: 30px 0 0;
}

.where-to-start-right {
    padding-bottom: 60px;
}

/* NOT SURE WHERE TO START? end */

/* keyword counter start */

.keyword-counter {
    background: var(--gradient);
    padding: 65px 55px;
}

.keyword-counter h2 {
    font-weight: 700;
    font-size: 36px;
    text-align: center;
    color: var(--white);
    padding-bottom: 50px;
}

.keyword-width {
    max-width: 20%;
}

.keyword-box-inner {
    font-family: var(--montserrat);
    font-weight: 700;
    font-size: 42px;
    text-align: center;
    text-transform: lowercase;

}

.keyword-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.keyword-box p {
    font-size: 22px;
}

/* keyword counter end */


.seo-investment-title {
    text-align: center;
    max-width: 1033px;
    margin: 0 auto;
    padding: 0 0 clamp(30px, 3.125vw, 45px);
}

.questions-about-working-info {
    max-width: 1054px;
    margin: 0 auto;
}

.our-rocket-seo-right {
    border-radius: 21px;
    overflow: hidden;
}

.our-rocket-seo-right .accordion-item {
    border: 0;
    border-bottom: 1px solid #E2E2FF;
    background-color: #F6F8F5;
}

.seo-faq-sec {
    padding-top: 80px;
}

.accordion-item:first-of-type .accordion-button {
    border-top-left-radius: calc(.25rem - 1px);
    border-top-right-radius: calc(.25rem - 1px);
}

.our-rocket-seo-right .accordion-button {
    box-shadow: none;
    background: transparent;
    padding: 25px 20px 25px 27px;
    justify-content: space-between;
}

.icon-info-sec p {
    font-size: 21px;
    color: var(--black);
    margin-left: 11px;
    font-weight: 500;
}

.accordion-body {
    padding: 1rem 1.25rem;
}

.seo-faq-right .accordion-body {
    padding-left: 40px;
}

.seo-faq-right .accordion-body p {
    padding-bottom: 15px;
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) saturate(100%) invert(0%) sepia(100%) saturate(7434%) hue-rotate(211deg) brightness(115%) contrast(115%);
}

.seo-investment-title h2 {
    font-weight: 700;
    font-size: 32px;
    text-transform: uppercase;
}

/* plans-pricing-sec-start */
.transparent-content-marketing-box {
    padding: 0 65px;
}

.ppc-business-goals .section-heading h3 {
    max-width: 955px;
    text-align: left;
}

.ppc-business-goals .sub-txt {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.563rem;
    color: #212121;
    text-align: left;
    padding: 30px 0 50px;
}

.ppc-business-goals .sub-txt a {
    text-decoration: underline;
}

.transparent-content-marketing-content {
    max-width: 1062px;
    margin: auto;
    background-color: #F7F9F6;
    border-radius: 19px;
}

.transparent-content-marketing-content-outer-box {
    width: 100%;
    border-right: 1px solid var(--lightblue);
}

.transparent-content-marketing-content-box {
    background-color: var(--lightblue);
    padding: 49px 38px;
    text-align: center;
    border-radius: 19px 0 0 19px;
}

.transparent-content-marketing-content-box h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.563rem;
}

.transparent-content-marketing-content-box p,
.transparent-content-marketing-content-box span,
.transparent-content-marketing-para h4 {
    font-size: 18px;
    color: var(--white);
    font-weight: 400;
    line-height: 25px;
    padding: 15px 0;
}

.transparent-content-marketing-content-box p {
    padding: 6px 0;
}

.transparent-content-marketing-content-box span {
    padding: 0;
}

.transparent-content-marketing-content-box span {
    color: var(--yellow);
}

.transparent-content-marketing-para {
    padding: 45px 45px 24px;
}

.transparent-content-marketing-para h4 {
    font-weight: 700;
    color: var(--black);
    padding-top: 0;
    padding-bottom: 27px;
}

.transparent-content-marketing-para ul li {
    margin-bottom: 30px;
}

.transparent-content-marketing-para ul li span {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 10px;
}

.transparent-content-marketing-para ul li p {
    font-size: 15px;
    color: #13124D;
}

.all-plan-sec {
    padding: 75px 30px 60px;
}

.all-plan-sec h2 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 36px;
    text-align: left;
}

.all-plan-sec ul li {
    font-size: 15px;
    margin-bottom: 20px;
    list-style-type: disc;
}

.all-plan-sec .content-marketing-tab-btn a {
    margin-top: 10px;
}

.all-plan-sec ul {
    margin-left: 25px;
}

/* plans-pricing-sec-end */




/* 08-12-25 */


/* seo-audit-services-sec start */
.sub-txt {
    color: #181818;
    text-align: center;
    margin: 0 auto;
}

.seo-audit-services-sec .sub-txt {
    max-width: 980px;
}

.seo-audit-services-sec .seo-faq-inner {
    padding-top: 25px;
}

.seo-audit-services-faq-left .nav .nav-link {
    padding-top: 25px;
    padding-bottom: 25px;
}

.on-page-factors-tab-right .content-marketing-tab-btn a {
    margin-top: 37px;
}

.transparent-seo-audit-sec .section-heading h3 {
    max-width: 750px;
}

.all-plan-sec .content-marketing-tab-btn a {
    text-transform: none;
}

.search-seo-audit-row .unrivalled-service-box-text h4 {
    max-width: 100%;
}


.Your-Business-Needs .section-heading p {
    font-size: 15px;
    padding: 0 0 15px 0px;
}

.Your-Business-Needs .section-heading h3 {
    padding-bottom: 44px;
}

.Your-Business-Needs .section-heading {
    padding-bottom: 55px;
}

.Website-SEO-Audit-Services-sec {
    background-color: var(--white);
}

.website-seo-services-row .unrivalled-service-box {
    box-shadow: 0px 4px 44px 0px #0000000D;
}

/* seo-audit-services-sec end */

/* implimentation-sec-start */
.seo-audit-half-content h3 {
    padding-bottom: 25px;
}

.seo-audit-half-content p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.563rem;
    color: #141414;
    text-align: left;
    padding-bottom: 20px;
}

.seo-audit-half-content p:last-child {
    padding-bottom: 0;
}

.seo-audit-text-flex {
    align-items: center;
    --bs-gutter-x: 37px;
}

.managed-PPC {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.managed-PPC>.row:nth-child(even) {
    flex-direction: row-reverse;
}

.seo-audit-half-media-col {
    display: flex;
    justify-content: center;
}

.seo-audit-half-content.section-heading {
    max-width: 100%;
    margin: 0;
}

/* implimentation-sec-end */

/* need-seo-audit-start */

.need-seo-audit-bg {
    background-color: #F7F9F6;
    border-radius: 28px;
    padding: 66px 143px 60px 116px;
}

.need-seo-audit-right-para span {
    font-weight: 500;
    font-size: 17px;
    line-height: 26px;
}

.need-seo-audit-gap {
    margin-top: 53px;
}

.need-seo-audit-right-para ul {
    padding: 25px 0;
}

.need-seo-audit-right-para ul li,
.deling-with-website-left-para ul li {
    font-size: 17px;
    line-height: 25px;
    font-weight: 400;
    padding-left: 15px;
    margin-bottom: 10px;
    position: relative;
}

.need-seo-audit-right-para ul li:last-child,
.deling-with-website-left-para ul li:last-child {
    margin: 0;
}

.need-seo-audit-right-para ul li::before,
.deling-with-website-left-para ul li::before {
    content: "";
    position: absolute;
    top: 11px;
    left: 0;
    width: 4px;
    height: 4px;
    background-color: #13124D;
    border-radius: 50%;
}

.need-seo-audit-right-img,
.need-seo-audit-right-img img {
    height: 100%;
    object-fit: contain;
}

.need-seo-audit-row {
    --bs-gutter-x: 60px;
}

.need-seo-audit-right-para p:first-child {
    font-size: 19px;
    font-weight: 700;
    padding-bottom: 33px;
}

/* need-seo-audit-end */

/* Common issues reviewed start */
.half-text-content p:not(:last-child) {
    margin: 0 0 15px;
}

.half-text-content ul {
    list-style: disc;
    padding-left: 25px;
    column-count: 2;
}

.half-text-content ul li {
    margin-bottom: 5px;
}

.common-issues-row {
    padding-top: 50px;
    align-items: center;
}

/* Common issues reviewed end */



/* 09-12-25 */

.deling-with-website-width {
    max-width: 1081px;
    margin: 42px auto 0;

}

.deling-with-website h2 {
    font-weight: 600;
    font-size: 32px;
    text-align: center;
    text-transform: uppercase;
}

.deling-with-website-left-para ul {
    padding: 24px 0 35px;
}

.deling-with-website-left-para p {
    padding-bottom: 18px;
}

.deling-with-website-left-para p a {
    display: inline;
    text-decoration: underline;
}

.deling-with-website-left-para p:first-child {
    padding-bottom: 0;
}

.deling-with-website-row {
    --bs-gutter-x: 61px;
    align-items: center;
}

.deling-with-website-left-para ul li {
    font-size: 17px;
    line-height: 25px;
    font-weight: 400;
    padding-left: 15px;
    margin-bottom: 10px;
    position: relative;
}

.deling-with-website-left-para ul li::before {
    content: "";
    position: absolute;
    top: 11px;
    left: 0;
    width: 6px;
    height: 6px;
    background-color: var(--black);
    border-radius: 50%;
}

.number-text-cards {
    margin-top: 100px;
}

.number-text-cards__flex {
    gap: 25px 0;
}

.number-text-cards-item {
    background: var(--white);
    text-align: center;
    transition: 0.3s;
    border-radius: 7px;
    min-height: 209px;
    padding: 30px 33px 25px 33px;
    border: 1px solid #EFEFEF;
}

.number-text-cards-item:hover {
    background: var(--sky);
}

.number-text-cards-item span {
    display: block;
    font-weight: 500;
    font-size: 18px;
    color: #000000;
}

.number-text-cards-item h2 {
    font-weight: 500;
    font-size: 50px;
}

.number-text-cards-item:hover span,
.number-text-cards-item:hover h2,
.number-text-cards-item:hover p {
    color: var(--white);
}

.audt-process-wrapper {
    background: #F7F9F6;
    border-radius: 28px;
    padding: 65px 30px 70px 30px;
}

.audt-process-flex {
    --bs-gutter-x: 30px;
    --bs-gutter-y: 30px;
    padding-top: 55px;
}

.audt-process-item {
    display: flex;
    align-items: flex-start;
}

.audt-process-item .step-no {
    display: block;
    min-width: 84px;
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
    border-right: 6px solid var(--lightblue);
    padding: 8px 20px 8px 0;
}

.audt-process-detl {
    width: calc(100% - 84px);
    padding-left: 25px;
}

.audt-process-detl h2 {
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
    margin: 0 0 15px;
    text-align: left;
}

.seo-audit-package-sec .sub-txt {
    max-width: 1049px;
}

.seo-audit-packages-width {
    max-width: 1050px;
    margin: 0 auto;
    padding-top: 10px;
}

.seo-audit-packages-row {
    --bs-gutter-x: 38px;
}

.seo-audit-packages-left-text p {
    padding-bottom: 20px;
}

.seo-audit-packages-left-text h3 {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.563rem;
    text-transform: none;
    padding: 10px 0 15px;
}

.seo-audit-packages-left-text p a {
    text-decoration: underline;
}


.seo-audit-text-flex {
    align-items: start;
}

.seo-audit-half-content h2 {
    max-width: 453px;
}

.seo-audit-half-media-col {
    display: flex;
    justify-content: center;
}

.seo-audit-search-result-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.seo-audit-search-result {
    width: 100%;
    height: 100%;
    background-image: url(../img/inner-bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right;
    padding: 96px 40px 105px;
}

.seo-audit-search-result-title span {
    font-size: 17px;
    font-weight: 700;
    line-height: 22px;
    color: var(--white);
}

.seo-audit-search-result-title h2 {
    font-weight: 700;
    font-size: 36px;
    text-align: center;
    text-transform: uppercase;
    padding: 15px 0;
    color: var(--white);
}

.seo-audit-search-result-title p {
    max-width: 707px;
    color: var(--white);
}

.seo-audit-process-title p a {
    text-decoration: underline;
    color: #13124D;
}


.seo-audit-process-title p a:hover {
    color: #FFC107;
}

.seo-audit-process-title h2,
.seo-audit-process-title p,
.seo-audit-process-title p a {
    color: var(--black);

}

.seo-audit-process-title p {
    padding: 35px 0 28px
}

.seo-audit-process-sub-title {
    padding-bottom: 20px;
}

.seo-audit-process-sub-title h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 25px;
    color: var(--black);
    padding-bottom: 15px;
}

.seo-audit-process-title h2 {
    font-weight: 700;
    font-size: 32px;
    text-transform: uppercase;
    text-align: start;
}

.margin-top-none {
    margin-top: 0 !important;
}

/* international-seo-start */

.int-seo-question .content-marketing-tab-btn a {
    margin: 15px 0 20px;
}

.int-seo-question .icon-info-sec p {
    font-weight: 600;
}

.int-seo-question .seo-faq-right .accordion-body p {
    font-size: 17px;
}

.different-international-seo-right .section-heading,
.Multilingual-SEO-left .section-heading {
    max-width: 525px;
    margin: 0;
    text-align: left;
    padding-bottom: 35px;
}

.different-international-seo-right span {
    display: inline-block;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.5rem;
    padding-bottom: 10px;
}

.different-international-seo-right p:not(:last-child){
    padding-bottom: 21px;
}

.different-international-seo-row{
    --bs-gutter-x: 82px;
}

.Multilingual-SEO-sec{
    padding: 110px 0;
    background-color: #F7F9F6;
}

.Multilingual-SEO-left .section-heading{
    max-width: 492px;
}

.Multilingual-SEO-left ul {
    padding: 19px 0 29px;
}

.Multilingual-SEO-left ul li {
    padding-left: 15px;
    position: relative;
}

.Multilingual-SEO-left ul li::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 0;
    width: 4px;
    height: 4px;
    background-color: #13124D;
    border-radius: 50%;
}

.implement-seo-sec{
    padding: 70px 0;
}

/* international-seo-end */


/* 12-12-25 */

.international-clients-box.content-marketing-process-box {
    border-radius: 16px;
    padding: 43px 38px 46px 32px;
}

.international-clients-box h3 {
    text-transform: capitalize;
    padding-bottom: 22px;
}

.international-clients-box p a {
    text-decoration: underline;
}

.international-clients-row {
    margin-top: 60px;
}

.international-seo-service-bg {
    padding: 57px 37px 60px 37px;
    border-radius: 20px;
}

.intseo-service-unique-content .section-heading {
    max-width: 633px;
    padding-bottom: 25px;
}

.intseo-service-unique-content span {
    font-size: 22px;
    padding-bottom: 18px;
}

.international-seo-services-span span {
    font-weight: 600;
    font-size: 64px;
    line-height: 4.125rem;
    color: #151515;
}

.intseo-service-unique-button a {
    margin: 0 !important;
    text-transform: capitalize;
    padding: 12px 46px;
}

.intseo-service-unique-button span {
    padding: 0 !important;
    font-size: 15px !important;
}

/* local seo start */
.local-seo-reviews-content {
    margin-top: 80px;
}

.local-seo-reviews-content-row {
    --bs-gutter-x: 46px;
}

.local-seo-reviews-content-box h2,
.local-seo-business-heading h2 {
    font-weight: 700;
    font-size: 36px;
    padding-bottom: 14px;
    text-align: start;
}

.local-seo-reviews-content-box p {
    padding-bottom: 21px;
}

.local-seo-reviews-para p {
    padding: 15px 0 27px;
}

.local-seo-reviews-content-box .local-seo-reviews-content-box-para {
    padding: 0;
}

.local-seo-reviews-para a {
    padding: 0;
    text-decoration: underline;
}

.local-seo-reviews-para a:hover {
    color: var(--sky);
}

.local-seo-ranking-box {
    height: 100%;
    background-color: #F7F9F6;
    border-radius: 8px;
    padding: 21px 34px 37px;
}

.local-seo-ranking-box h3 {
    font-size: 20px;
    padding: 23px 0 10px;
}

.local-seo-ranking-box p,
.local-seo-ranking-box ul li {
    padding-bottom: 20px;
}

.local-seo-ranking-box ul {
    padding: 0 0 0 10px;
}

.local-seo-reviews-left-img,
.local-seo-reviews-left-img img {
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.local-seo-ranking-box ul li {
    position: relative;
    padding-left: 15px;
}

.local-seo-ranking-box ul li::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 0;
    width: 6px;
    height: 6px;
    background-color: var(--black);
    border-radius: 50%;
}

.local-seo-reviews-bottom-para {
    padding: 38px 0 58px;
}


.local-seo-business-inner {
    background: var(--gradient);
    border-radius: 7px;
    padding: 58px 0 15px;
    margin-top: 76px;
}

.local-seo-business-heading {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.local-seo-business-heading h2 {
    color: #fff;
    padding-bottom: 18px;
}

.local-seo-business-heading p {
    max-width: 81%;
    color: #fff;
    padding: 23px 0 31px;
}

.local-seo-business-heading span {
    font-weight: 500;
    font-size: 17px;
    text-align: center;
    color: #fff;
}

.local-seo-business-inner-box-row {
    --bs-gutter-x: 46px;
}

.local-seo-business-inner-box-img {
    display: flex;
    justify-content: end;
}

.local-seo-business-para p {
    color: #fff;
    padding: 0 49px 21px 0;
}

.local-seo-business-heading h2 {
    text-align: center;
}

/* 15-12-25 */
.Local-SEO-Services-Drive-Lead {
    background-color: #F7F9F6;
    padding: 75px 0;
}

.Local-SEO-Services-Drive-Lead-heading h2,
.local-seo-tips-title h2 {
    font-weight: 700;
    font-size: 32px;
    text-align: center;
    text-transform: uppercase;
    padding-bottom: 10px;
}

.Local-SEO-Services-Drive-Lead-heading span {
    font-weight: 400;
    font-size: 17px;
    line-height: 1.4em;
    color: var(--black);
    text-align: center;
    display: block;
}

.Local-SEO-Services-Drive-Lead-heading p {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    max-width: 1110px;
    margin: 0 auto;
    padding: 24px 0;
}

.Local-SEO-Services-Drive-Lead-content h5 {
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    color: var(--black);
    padding-bottom: 35px;
}

.Local-SEO-Services-Drive-Lead-content ul {
    padding: 0 0 0 10px;
}

.Local-SEO-Services-Drive-Lead-content ul li {
    font-weight: 400;
    font-size: 17px;
    line-height: 19px;
    padding: 0 0 18px 15px;
    position: relative;
}

.Local-SEO-Services-Drive-Lead-content ul li::before {
    content: "";
    position: absolute;
    top: 6px;
    left: 0;
    width: 6px;
    height: 6px;
    background-color: var(--black);
    border-radius: 50%;
}

.local-seo-service-bottom-para p {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    text-align: center;
    max-width: 1110px;
    margin: 0 auto;
    padding-top: 50px;
}

.local-seo-tips {
    margin: 80px 0 0;
}

.local-seo-tips-title {
    text-align: center;
    margin: 0 0 30px;
}

.local-seo-tips-title h2 {
    padding: 0 0 18px;
}

.seo-tips-cards .local-seo-ranking-box {
    padding: 34px;
}

.seo-tips-cards .local-seo-ranking-box ul li:last-child {
    padding-bottom: 0;
}

.seo-tips-bot-text {
    text-align: center;
    max-width: 1110px;
    margin: 0 auto;
    padding: 50px 0 0;
}

.seo-tips-bot-text p:not(:last-child) {
    padding-bottom: 15px;
}

.Increase-Brand-Awareness .local-seo-service-title h3 {
    max-width: 810px;
}


.local-SEO-packages-title h2,
.local-SEO-services-include-title h2,
.transparent-local-seo-pricing h2 {
    font-weight: 700;
    font-size: 32px;
    line-height: 34px;
    text-align: center;
    text-transform: uppercase;
    padding-bottom: 20px;
}

.local-SEO-packages-title p {
    padding-bottom: 16px;
}

.local-seo-table table tbody tr td {
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    padding: 22px 70px;
    border: 1px solid #D2DCEE;
}

.local-seo-table {
    border-radius: 29px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #D2DCEE;
}

.local-seo-table table {
    border-radius: 29px;
    overflow: hidden;
    border: 1px solid #D2DCEE;
}

.local-seo-table {
    margin-top: 10px;
}

.icon-adjust {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--sky);
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.icon-adjust i {
    font-size: 12px;
}



.local-SEO-services-include-title,
.transparent-local-seo-pricing,
.trust-the-company {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.local-SEO-services-include-title h2 {
    padding-bottom: 0;
}

.local-SEO-services-include-title p {
    max-width: 1121px;
    padding: 19px 0 23px;
}

.contact-marketing-faq-row {
    --bs-gutter-x: 30px;
}

.local-seo-tab-inner h4 {
    font-size: 1.375rem;
    color: var(--black);
    padding-bottom: 13px;
}

.local-seo-tab-inner-box {
    background: var(--gradient);
    padding: 53px;
    border-radius: 10px;
    margin-top: 40px;
}

.local-seo-tab-inner-content h5 {
    font-size: 1.25rem;
    font-weight: bold;
    line-height: 25px;
    color: var(--white);
}

.local-seo-tab-inner-content span {
    font-size: 17px;
    color: var(--white);
    font-weight: 500;
    line-height: 25px;
    display: inline-block;
    padding: 28px 0 22px;
}

.local-seo-tab-inner-content p {
    color: var(--white);
}

.form-col-input label {
    font-size: 17px;
    font-weight: 500;
}

.custome-total-cost-sec {
    padding: 28px 0 47px;
}

.custome-total-cost-sec p {
    font-size: 17px;
    color: var(--white);
}

.custome-total-cost-sec p span {
    color: var(--yellow);
}

.form-col-input button:hover {
    background: transparent;
    border-color: #FFC107;
    color: #FFC107;
}

.custome-button-sec button:last-child {
    background: var(--yellow);
    color: var(--white);
    border-radius: 4px;
}

.custome-button-sec button:first-child {
    background: rgba(0, 56, 65, 1);
    margin-right: 13px;
    border-radius: 4px;
}


.custome-button-sec button:last-child {
    width: 373px;
}

.transparent-local-seo-pricing h2 {
    max-width: 660px;
}

.transparent-local-seo-pricing p {
    max-width: 1079px;
}

.transparent-local-seo-pricing-box {
    padding: 42px 0 0;
}

.transparent-local-seo-pricing-box-block {
    height: 100%;
    box-shadow: 0px 4px 44px 0px #0000001A;
    border-radius: 8px;
    overflow: hidden;
}

.transparent-local-seo-pricing-box-inner-top {
    background-color: var(--sky);
    padding: 45px 0px 40px;
    text-align: center;
}

.transparent-local-seo-pricing-box-inner-top h4 {
    font-size: 1.375rem;
    padding: 0 0 15px;
    color: #fff;
}

.transparent-local-seo-pricing-box-inner-top span {
    font-size: 2.625rem;
    /* line-height: 3rem; */
    font-weight: bold;
    color: var(--yellow);
}

.transparent-local-seo-pricing-box-inner-top p {
    font-size: 1.063rem;
    /* line-height: 3rem; */
    color: var(--white);
}

.transparent-local-seo-pricing-box-inner-para {
    padding: 32px 30px 36px;
}

.transparent-local-seo-pricing-box-inner-para p {
    padding-bottom: 30px;
}

.transparent-local-seo-pricing-box-inner-para ul li {
    display: flex;
    padding: 0 0px 25px;
}

.transparent-local-seo-pricing-box-inner-para ul li i {
    color: var(--sky);
    margin-right: 12px;
}

.trust-the-company h4 {
    max-width: 700px;
    padding: 42px 0 23px;
    font-weight: 700;
    font-size: 24px;
    text-align: center;
}

.trust-the-company .primary-btn {
    background: var(--sky);
    color: var(--white);
}

.trust-the-company a {
    padding: 17px 100px;
    border-radius: 4px;
}

.trust-the-company p {
    padding-bottom: 30px;
}

.half-text-half-form {
    display: flex;
    flex-wrap: wrap;
}

.half-text-col {
    width: 50%;
   background: rgba(247, 249, 246, 1);
}

.half-text-col-inner {
    max-width: 650px;
    margin-left: auto;
    height: 100%;
    align-content: center;
    padding: 0 38px 0 15px;
}

.half-text-col-inner h2 {
    font-weight: 700;
    font-size: 36px;
    margin: 0 0 25px;
    text-align: start;
    text-transform: none;
}

.half-text-col-inner p:not(:last-child) {
    margin-bottom: 15px;
}

.half-form-col {
    width: 50%;
    background: var(--sky);
    padding: 60px 15px 68px 38px;
}

.half-form-col-inner {
    max-width: 508px;
}

.half-form-col-inner h2 {
    font-weight: 700;
    font-size: 36px;
    color: var(--white);
    margin: 0 0 10px;
    text-align: start;
}

.half-form-col-inner .row {
    gap: 18px 0;
}

.form-col-input button {
    background: var(--yellow);
    padding: 13px 50px;
    border-radius: 4px;
    border: 1px solid transparent;
}

.form-col-input button:hover {
    background: transparent;
    border: 1px solid var(--white);
    color: var(--white);
}

.choose-company-img-bg{
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: linear-gradient(98.37deg, #54C5D1 14.87%, #26335D 91.59%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.choose-company-row .unrivalled-service-box-text{
    max-width: calc(100% - 70px);
}

.choose-company-img-heading-box{
    display: flex;
    align-items: center;
    gap: 18px;
}

.choose-company-img-heading-box .unrivalled-service-box-text h4{
    padding: 0 !important;
}

.choose-para{
    max-width: 1110px;
    margin: 35px 0 30px;
    text-align: center;
}

.local-seo-faq-sec{
    padding: 60px 0 85px;
}

.optimization-faqs-list {
    column-count: 2;
    column-gap: 30px;
    margin-top: 40px;
}

.at-item {
    border-radius: 6px;
    margin-bottom: 22px;
}

.at-title {
    cursor: pointer;
    background: #F7F9F6;
    border-radius: 6px;
    position: relative;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5em;
    color: #000000;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
    padding: 18px 75px 18px 20px;
}

.at-title span {
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translate(0, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 6px;
    background: #13124D;
    font-size: 16px;
    line-height: 1;
    color: #fff;
}

.at-title.active span i {
    font-size: 18px;
    transform: rotate(45deg);
}

.at-tab {
    font-size: 15px;
    display: none;
    padding: 15px;
    border: 1px solid #FAFAFF;
    box-shadow: 0 0 10px #FAFAFF;
    border-top: none;
    background-color: #fff;
}

.digital-marketing-proposal-banner{
    background: linear-gradient(98.37deg, #54C5D1 14.87%, #26335D 91.59%);
    margin-top: 55px;
}

.rank-form-row{
    --bs-gutter-y: 16px;
}

.rgt-frm select {
    background-image: url(../img/select-down-arrow.webp);
    background-repeat: no-repeat;
    background-position: 97% 20px;
}

.rgt-frm select{
    height: 45px;
    color: #949292;
}

.digital-marketing-proposal-form {
    padding: 45px 65px 45px 0px;
}

.free-digital-row {
    align-items: end;
}

.rgt-frm textarea::placeholder{
    font-family: var(--montserrat);
}





/* local seo end */





/* modal 17-12-25 */


.modal-open {
    height: 100vh !important;
    padding-right: 0px !important;
}

.modal-content {
    background: rgba(247, 249, 246, 1);
}

.modal-header {
    border: 0;
}

.file-upload-wrapper {
    position: relative;
    width: 100%;
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 5;
}

.rgt-frm .file-label {
    padding: 15px;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.file-label {
    width: 100%;
    background: #fff;
    border-radius: 10px;
    border: #e3e3e3 1px solid;
    transition: 0.2s ease all;
    font-size: 16px;
    font-weight: 400;
    color: #6c6b6b;
}

.modal-body {
    padding: 15px 15px 30px;
}

.send-btn {
    margin-top: 20px;
}




/* 18-12-25 */
.header-right-wrapper {
    display: flex;
    width: 70%;
    align-items: center;
    justify-content: end;
}

.header-right {
    width: 100%;
}

.quary-btn {
    font-weight: 700;
    font-size: 18px;
    line-height: 1em;
    border-radius: 4px;
    color: var(--white);
    background-color: var(--lightblue);
    border: none;
    padding: 13px 30px;
    margin-left: 20px;
    transition: all 0.3s ease-in-out;

    &:hover {
        background-color: var(--yellow);
    }
}

@media(max-width: 1199px) {
    .quary-btn {
        font-size: 17px;
        padding: 13px 27px;
        margin-left: 18px;
    }
}

@media(max-width: 991px){
    .header-right-wrapper{
        flex-direction: row-reverse;
    }

    .quary-btn {
        margin: 0 18px 0 0;
    }
}

@media(max-width: 575px){
    .quary-btn {
        font-size: 16px;
        padding: 12px 24px;
    }
}

@media(max-width: 480px){
    .quary-btn {
        padding: 11px 20px;
        margin: 0 15px 0 0;
    }
}