@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");

:root {
    --theme: #341950;
    --gradient: linear-gradient(215deg, rgba(175, 105, 238, 1) 0%, rgba(52, 25, 80, 1) 85%);
}

body {
    word-break: break-word;
    font: 15px / 25px Poppins, sans-serif;
    color: rgb(57, 57, 57);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: rgb(40, 177, 109);
    white-space: initial;
}

a:hover,
a:focus {
    text-decoration: none;
    color: rgb(57, 57, 57);
}

a:hover {
    transition: all 0.5s ease-in-out 0s;
}

img {
    max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease 0s;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    appearance: none;
}

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

p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.2;
    font-family: Roboto, sans-serif;
}

.w-auto {
    width: fit-content !important;
    display: block !important;
}

.noPadding {
    padding: 0px;
}

.noLeft {
    padding-left: 0px;
}

.noRight {
    padding-right: 0px;
}

.centerCol {
    float: none;
    margin: 0px auto;
}

.pt_8 {
    padding-top: 80px;
}

.pb_8 {
    padding-bottom: 80px;
}

.py_8 {
    padding: 80px 0px;
}

.theme_btn {
    padding: 0.9em 1.6em;
    border: none;
    outline: none;
    color: rgb(255, 255, 255);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 12px;
    font-family: Poppins;
    display: block;
    text-align: center;
    width: 100%;
}

.theme_btn::after {
    content: "";
    z-index: -1;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgb(175, 105, 238);
    left: 0px;
    top: 0px;
    transition: all 0.5s ease 0s;
    border-radius: 5px;
}

.theme_btn::before {
    content: "";
    background: linear-gradient(45deg, rgb(0, 0, 0), rgb(52, 25, 80), rgb(175, 105, 238), rgb(52, 25, 80), rgb(0, 0, 0), rgb(52, 25, 80), rgb(175, 105, 238), rgb(52, 25, 80)) 0% 0% / 600%;
    position: absolute;
    top: -2px;
    left: -2px;
    z-index: -1;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    filter: blur(8px);
    animation: 20s linear 0s infinite normal none running glowing;
    transition: opacity 0.3s ease-in-out 0s;
    border-radius: 10px;
    opacity: 0;
}

@keyframes glowing {
    0% {
        background-position: 0px 0px;
    }

    50% {
        background-position: 400% 0px;
    }

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

.theme_btn:hover::before {
    opacity: 1;
}

.theme_btn:active::after {
    background: transparent;
}

.theme_btn:active {
    color: rgb(0, 0, 0);
    font-weight: bold;
}

.theme_btn:hover::after {
    border-radius: 5px;
}

.theme_btn:hover {
    color: rgb(255, 255, 255);
}

.flexRow {
    display: flex;
    align-items: center;
}

.flexCol {
    -webkit-box-flex: 1;
    flex: 1 1 0%;
    align-items: center;
}

h1 {
    font-family: Poppins, sans-serif;
    font-size: 22px;
    line-height: 1.2;
    color: rgb(255, 255, 255);
    font-weight: 400;
    text-transform: uppercase;
    margin: 0px 0px 16px;
}

h2 {
    font-family: Poppins, sans-serif;
    font-size: 53.23px;
    line-height: 1.2;
    color: rgb(255, 255, 255);
    font-weight: 700;
    margin: 0px 0px 20px;
}

h3 {
    font-family: Poppins, sans-serif;
    font-size: 30px;
    line-height: 1.2;
    color: rgb(0, 0, 0);
    font-weight: 600;
    margin: 0px 0px 28px;
}

h4 {
    font-family: Poppins, sans-serif;
    font-size: 24px;
    line-height: 1.2;
    color: rgb(57, 57, 57);
    font-weight: 500;
    margin: 0px 0px 13px;
}

h5 {
    font-family: Poppins, sans-serif;
    font-size: 20px;
    line-height: 1.2;
    color: rgb(57, 57, 57);
    font-weight: 500;
    margin: 0px 0px 20px;
}

h6 {
    font-family: Poppins, sans-serif;
    font-size: 18px;
    line-height: 1.2;
    color: rgb(57, 57, 57);
    font-weight: 500;
    margin: 0px 0px 22px;
}

select {
    background: url("../images/arrow.png") right center no-repeat rgb(255, 255, 255);
    padding: 0px 40px 0px 30px;
}

::-webkit-input-placeholder {
    color: rgb(87, 87, 87);
}

.navbar-expand-lg .navbar-nav:first-child {
    margin-left: auto ! IMPORTANT;
}

header .bg-dark {
    padding: 0px;
}

 input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    appearance: none;
    margin: 0px;
} 

header .dropdown-item:hover,
.dropdown-item:focus {
    background-color: #af69ee;
    color: #fff;
    transition: none;
}

header .dropdown-item {
    font-size: 16px;
    color: #000;
    padding: 10px 15px;
    transition: none;
}

header {
    padding: 15px 0px;
    position: absolute;
    z-index: 9;
    background-color: rgb(255, 255, 255);
    transition: all 0.3s ease-in-out 0s;
    width: 100%;
    top: 0px;
}

header.sticky {
    position: fixed;
    width: 100%;
    z-index: 10;
    transition: all 0.6s ease-in-out 0s;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    top: 0px;
    padding: 5px 0px;
}

.profile-menu .dropdown-menu {
    right: 0px;
    left: unset;
}

.profile-menu .fa-fw {
    margin-right: 10px;
}

.toggle-change::after {
    border-top: 0px;
    border-bottom: 0.3em solid;
}

header .navbar-brand {
    font-size: 30px;
    font-weight: 600;
    margin-right: 0px;
    width: 10%;
    color: rgb(0, 0, 0) !important;
}

header .bg-dark {
    background-color: rgb(255, 255, 255) !important;
}

header .navbar-dark .navbar-nav .nav-link,
.navbar-dark .navbar-text {
    font-size: 16px;
    font-family: Roboto, sans-serif;
    color: rgb(0, 0, 0) !important;
}

.carousel-item>img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center center;
}

.carousel-item>.carousel-option {
    position: absolute;
    top: 0px;
    left: 0px;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
}

.home-banner {
    background-color: var(--theme);
    overflow: hidden;
    z-index: 1;
    padding-top: 120px !important;
}

.all-sec {
    padding: 40px 0px;
}

.banner_text>p {
    font-size: 20px;
    color: rgb(255, 255, 255);
    line-height: 31px;
}

.banner_text>span {
    color: rgb(255, 255, 255);
    font-size: 20px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 30px;
    margin-top: 40px;
}

.banner_text>form {
    background-color: rgb(255, 255, 255);
    padding: 20px 15px;
    border-radius: 5px;
}

.banner_text>form input {
    width: 100%;
    height: 40px;
    border-width: 0px 0px 1px;
    border-top-style: initial;
    border-right-style: initial;
    border-left-style: initial;
    border-top-color: initial;
    border-right-color: initial;
    border-left-color: initial;
    border-image: initial;
    border-bottom-style: solid;
    border-bottom-color: rgb(149, 149, 149);
    margin-bottom: 20px;
}

.banner_text>form input::placeholder {
    color: rgb(0, 0, 0);
    font-family: Roboto;
}

.theme_btn2 {
    border: 0px;
    background-color: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 50px;
    border-radius: 5px;
    font-weight: 600;
}

.theme_btn2:hover {
    background: rgb(255, 188, 71);
    transition: all 0.5s ease-in-out 0s;
}

.banner_values {
    position: relative;
    height: 100%;
    z-index: 1;
}

.banner_values .web_operat_div {
    background-color: rgb(255, 188, 71);
    position: absolute;
    top: 0px;
    left: 20%;
    width: 230px;
    height: 230px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 50%;
}

.banner_values .web_operat_div h1 {
    font-size: 68px;
    color: rgb(0, 0, 0);
    font-family: Poppins;
    font-weight: 600;
    margin: 0px;
}

.banner_values .web_operat_div span {
    font-size: 68px;
    color: rgb(0, 0, 0);
    font-family: Poppins;
    font-weight: 600;
    text-transform: uppercase;
}

.banner_values .web_operat_div .d-flex {
    align-items: baseline;
}

.banner_values .web_operat_div p {
    font-size: 18px;
    color: rgb(0, 0, 0);
    font-weight: 500;
    margin: 0px;
}

.web_operat_div.leads_div.item {
    left: 70%;
    background-color: rgb(175, 105, 238);
    width: 180px;
    height: 180px;
    top: 40px !important;
}

.web_operat_div.leads_div.item h1 {
    color: rgb(255, 255, 255);
    font-size: 48px;
}

.web_operat_div.leads_div.item span {
    color: rgb(255, 255, 255);
    font-size: 48px;
}

.web_operat_div.leads_div.item p {
    font-size: 13px;
    color: rgb(255, 255, 255);
}

.web_operat_div.optimizd_div.item {
    background-color: rgb(175, 105, 238);
    width: 160px;
    height: 160px;
    top: 270px;
    left: 70px;
}

.web_operat_div.optimizd_div.item h1 {
    font-size: 42px;
    color: rgb(255, 255, 255);
}

.web_operat_div.optimizd_div.item p {
    font-size: 12px;
    color: rgb(255, 255, 255);
}

.web_operat_div.compaigns_div.item {
    background-color: rgb(255, 255, 255);
    top: unset;
    bottom: 0px;
    left: unset;
    right: 60px;
    transform: scale(1.2);
}

.banner_values::after {
    position: absolute;
    content: "";
    background-image: url("../images/vec1.png");
    width: 620px;
    height: 580px;
    left: -11%;
    top: -155px;
    background-size: 100%;
    z-index: -1;
    background-repeat: no-repeat;
}

@keyframes abc {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.banner_values::before {
    position: absolute;
    content: "";
    background-image: url("../images/vec2.png");
    width: 340px;
    height: 340px;
    background-size: 100%;
    background-repeat: no-repeat;
    right: 7px;
    bottom: -50px;
    animation: 5s linear 0s infinite normal none running abc;
}

.home-banner::after {
    position: absolute;
    content: "";
    background-image: url("../images/vec3.png");
    width: 300px;
    height: 300px;
    left: -40px;
    top: 0px;
    z-index: -1;
    background-repeat: no-repeat;
    background-size: 100%;
}

.banner_values>span:nth-child(1) {
    background: rgb(229, 200, 255);
    width: 30px;
    height: 30px;
    display: block;
    border-radius: 50%;
    position: absolute;
    top: 12%;
    left: 7%;
}

.banner_values>span:nth-child(2) {
    background: rgb(234, 243, 223);
    width: 50px;
    height: 50px;
    display: block;
    border-radius: 50%;
    position: absolute;
    top: 40%;
    left: 8%;
}

.banner_values>span:nth-child(3) {
    background: rgb(234, 243, 223);
    width: 60px;
    height: 60px;
    display: block;
    border-radius: 50%;
    position: absolute;
    top: 0px;
    right: 30%;
}

.banner_values>span:nth-child(4) {
    background: rgb(255, 235, 199);
    width: 30px;
    height: 30px;
    display: block;
    border-radius: 50%;
    position: absolute;
    bottom: 10%;
    left: 3%;
}

.banner_bottom_sec::after {
    position: absolute;
    content: "";
    width: 20%;
    height: 100%;
    right: 0px;
    top: 0px;
}

.banner_bottom_sec {
    background-color: rgb(229, 200, 255);
    padding: 30px 0px;
    position: relative;
}

.banner_bottom_sec .ban_slidr ul {
    gap: 40px;
    position: relative;
    margin: 0px auto;
    width: fit-content !important;
}

.banner_bottom_sec .ban_slidr ul li {
    font-size: 17.68px;
    color: rgb(0, 0, 0);
    font-family: Roboto;
    font-weight: 500;
}

.banner_bottom_sec .ban_slidr ul li:last-child span {
    font-size: 16.26px;
    position: relative;
    display: block;
}

.banner_bottom_sec .ban_slidr ul li:last-child span::after {
    position: absolute;
    content: "";
    background: rgb(0, 0, 0);
    width: 2px;
    height: 70%;
    left: -22px;
    top: 4px;
}

.banner_bottom_sec .ban_slidr ul::after {
    position: absolute;
    content: "";
    background: rgb(255, 255, 255);
    width: 2px;
    height: 100%;
    right: -20px;
}

.banner_bottom_sec .slick-slide {
    opacity: 1;
}

.logos_sec .slick-prev>i {
    color: var(--theme);
    font-size: 20px;
    font-weight: bold;
    border: 2px solid;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.logos_sec .slick-next>i {
    color: var(--theme);
    font-size: 20px;
    font-weight: bold;
    border: 2px solid;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.logos_sec .slick-prev::before {
    display: none;
}

.logos_sec .slick-next::before {
    display: none;
}

.logos_sec .slick-active {
    opacity: 1;
}

.logos_sec .slick-prev {
    left: -50px;
    top: 35px;
}

.logos_sec .slick-next {
    right: -50px;
    top: 35px;
}

.logos_sec img {
    height: 90px;
    object-fit: contain;
}

.theme-heading>h2 {
    color: var(--theme);
    font-size: 56px;
    text-transform: none;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 10px;
    font-family: Poppins;
}

.theme-heading>p {
    font-size: 20px;
    color: rgb(0, 0, 0);
    font-family: Poppins;
    font-weight: 500;
    line-height: 1.5;
}

.theme-heading {
    text-align: center;
}

.growth_starts_secc .grwth_textt {
    box-shadow: rgba(0, 0, 0, 0.35) 3px 5px 18px;
    padding: 40px 30px;
    border-radius: 10px;
}

.growth_starts_secc .grwth_textt>h3 {
    font-size: 30px;
    color: var(--theme);
    line-height: 1.3;
    margin-bottom: 13px;
}

.growth_starts_secc .grwth_textt>p {
    font-size: 18px;
    color: rgb(0, 0, 0);
    font-family: Poppins, sans-serif;
    line-height: 1.7;
    margin: 0px;
    font-weight: 400;
}

.growth_starts_secc .grwth_img>img {
    width: 100%;
    height: 410px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.growth_starts_secc .grwth_btn>a {
    background: var(--theme);
    writing-mode: vertical-lr;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row-reverse;
    gap: 20px;
    width: 90%;
    height: 410px;
    border-radius: 10px;
    margin: 0px auto;
}

.growth_starts_secc .grwth_btn>a>span {
    color: rgb(255, 255, 255);
    font-size: 20px;
    font-family: Poppins;
    transform: rotate(180deg);
}

.growth_starts_secc .grwth_btn>a>i {
    font-size: 20px;
    color: rgb(255, 255, 255);
    border: 2px solid;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.witness_unreal_div {
    position: relative;
    background: var(--theme);
    width: 85%;
    margin: 0px auto;
    border-radius: 10px;
    padding: 30px;
    z-index: 1;
}

.witness_unreal_div>h2 {
    font-size: 45px;
    font-family: Roboto, sans-serif;
    font-weight: 500;
    width: 70%;
    margin: 0px auto 30px;
    line-height: 1.1;
}

.witness_unreal_div>form input {
    width: 100%;
    height: 50px;
    border-radius: 6px;
    border: 0px;
    background: rgb(230, 230, 230);
    position: relative;
    padding: 10px 20px;
}

.witness_unreal_div>form input::after {
    width: 100%;
    height: 100%;
    background-color: rgb(149, 149, 149);
    top: 0px;
    left: 0px;
}

.witness_unreal_div>form input::placeholder {
    color: rgb(0, 0, 0);
    font-weight: 400;
    font-family: Roboto;
}

.witness_unreal_div>form button {
    width: 100%;
    height: 50px;
    border: 0px;
    border-radius: 5px;
    background: rgb(255, 188, 71);
    color: var(--theme);
    font-size: 16px;
    font-weight: 700;
}

.witness_unreal_div::after {
    position: absolute;
    content: "";
    background-image: url("../images/vec4.png");
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    z-index: -1;
}

.we_are_textt_div {
    border: 1px solid rgb(223, 223, 223);
    border-radius: 10px;
    padding: 30px 15px;
    transition: all 0.3s ease-in-out 0s;
    cursor: pointer;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.we_are_textt_div>h3 {
    color: var(--theme);
    font-size: 22px;
    margin-bottom: 15px;
    transition: all 0.3s ease-in-out 0s;
}

.we_are_textt_div>p {
    font-size: 18px;
    color: rgb(0, 0, 0);
    line-height: 1.6;
    font-weight: 400;
    transition: all 0.3s ease-in-out 0s;
}

.we_are_textt_div>ul>li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    font-size: 18px;
    color: rgb(0, 0, 0);
    font-family: Roboto;
    transition: all 0.3s ease-in-out 0s;
    border-bottom: 1px solid rgb(255, 255, 255);
    width: fit-content;
}

.we_are_textt_div>ul>li:last-child {
    margin: 0px;
}

.we_are_textt_div>ul>li::after {
    position: absolute;
    content: "";
    background: rgb(255, 188, 71);
    width: 7px;
    height: 7px;
    left: 0px;
    top: 6px;
    border-radius: 50%;
    transition: all 0.3s ease-in-out 0s;
}

.we_are_textt_div>ul {
    margin-bottom: 30px;
}

.we_are_textt_div>.pkgg_btn {
    color: var(--theme);
    font-size: 16px;
    font-weight: 600;
    border-bottom: 2px solid rgb(140, 125, 156);
    width: fit-content;
    margin-inline-start: auto;
    display: block;
    transition: all 0.3s ease-in-out 0s;
    padding: 5px 0px;
}

.we_are_textt_div::after {
    position: absolute;
    content: "";
    background: var(--theme);
    width: 0px;
    height: 5px;
    left: 0px;
    bottom: 0px;
    border-radius: 0px 0px 10px 10px;
    transition: all 0.2s ease-in-out 0.1s;
}

.we_are_textt_div:hover::after {
    width: 100%;
    transition: all 0.2s ease-in-out 0.2s;
}

.we_are_textt_div:hover {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
    transition: all 0.3s ease-in-out 0s;
}

.we_are_textt_div>ul>li:hover {
    transition: all 0.3s ease-in-out 0s;
    transform: translate(5px, 0px);
    border-bottom: 1px solid;
}

.we_are_textt_div::before {
    position: absolute;
    content: "";
    background: var(--theme);
    width: 5px;
    height: 0px;
    left: 0px;
    top: 0px;
    border-radius: 10px 0px 0px 10px;
    transition: all 0.1s ease-in-out 0.3s;
}

.we_are_textt_div:hover::before {
    height: 100%;
    transition: all 0.1s ease-in-out 0.1s;
}

.counter_secc_wrpp>ul {
    justify-content: space-between;
    margin: 0px;
    text-align: center;
}

.counter_secc_wrpp>ul>li>h3 {
    font-size: 38px;
    color: var(--theme);
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.counter_secc_wrpp>ul>li>span {
    font-size: 38px;
    color: var(--theme);
    font-family: Poppins;
    font-weight: 600;
    display: inline-block;
}

.counter_secc_wrpp>ul>li>p {
    font-size: 18px;
    color: var(--theme);
    font-family: Poppins;
    font-weight: 600;
    margin: 0px;
    display: block;
}

.portfolio_secc {
    background-color: rgb(250, 244, 255);
}

.custom_tabbing_wrpp>ul>li {
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: var(--theme);
    transition: all 0.3s ease-in-out 0s;
    padding: 10px;
}

.custom_tabbing_wrpp>ul>li.curr-tab {
    background: rgb(255, 255, 255);
    transition: all 0.3s ease-in-out 0s;
}

.cus-tabs {
    display: none;
}

.cus-tabs.curr-tab {
    display: block;
}

.cus-tabs a>img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    object-position: center top;
    border-radius: 15px;
    transition: all 0.4s ease-in-out 0s;
}

.cus-tabs a {
    position: relative;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cus-tabs a::after {
    position: absolute;
    content: "Read Case Study";
    color: rgb(255, 255, 255);
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    font-family: Roboto;
    transition: all 0.3s ease-in-out 0s;
    transform: scale(0);
    z-index: 2;
}

.cus-tabs a::before {
    position: absolute;
    content: "";
    background: rgba(0, 0, 0, 0.26);
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    border-radius: 15px;
    z-index: 1;
    transition: all 0.3s ease-in-out 0s;
    transform: scale(0);
}

.cus-tabs a:hover::after {
    transform: scale(1);
    transition: ease-in-o 0.3s ease 0s;
}

.cus-tabs a:hover::before {
    transform: scale(1);
    transition: all 0.3s ease-in-out 0s;
}

.cus-tabs a:hover img {
    object-position: center bottom;
    transition: all 1s ease-in-out 0.3s;
}

.empower_business_sec {
    background-color: var(--theme);
    z-index: 1;
    overflow: hidden;
    position: relative;
}

.empower_business_sec .custom_tabbing_wrpp>ul>li {
    color: rgb(255, 255, 255);
    font-weight: 500;
    background-color: rgb(175, 105, 238);
    border-radius: 5px;
    padding: 13px 20px;
}

.empower_business_sec .custom_tabbing_wrpp>ul>li.curr-tab {
    background-color: rgb(255, 188, 71);
    color: var(--theme);
}

.empower_business_sec .custom_tabbing_wrpp>ul {
    margin: 30px 0px 50px;
}

.empower_business_sec .empower_tab_wrp ul {
    margin: 0px;
}

.empower_business_sec .empower_tab_wrp ul>li {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
    transition: all 0.2s ease-in-out 0s;
    cursor: pointer;
}

.empower_business_sec .empower_tab_wrp ul>li>img {
    width: 70px;
    object-fit: scale-down;
    padding: 10px;
    height: 70px;
}

.empower_business_sec .empower_tab_wrp ul>li>span {
    font-size: 18.17px;
    color: rgb(255, 255, 255);
    font-family: Roboto, sans-serif;
    font-weight: 300;
}

.empower_business_sec .empower_tab_wrp ul>li::after {
    position: absolute;
    content: "";
    background: rgb(175, 105, 238);
    width: 65px;
    height: 65px;
    left: 0px;
    top: 0px;
    border-radius: 10px;
    z-index: -1;
    transition: all 0.2s ease-in-out 0s;
}

.empower_business_sec .empower_tab_wrp ul>li:last-child {
    margin: 0px;
}

.empower_business_sec .pkgg_btn {
    font-size: 18px;
    color: rgb(255, 255, 255);
    border-bottom: 1px solid;
    display: block;
    width: fit-content;
    margin-top: 50px !important;
    margin: 0 auto;
    margin-bottom: -30px;
    padding: 5px 0px;
    transition: all 0.3s ease-in-out 0s;
}

.empower_business_sec::before {
    position: absolute;
    content: "";
    background-image: url("../images/vec5.png");
    width: 250px;
    height: 30px;
    left: 0px;
    top: 12%;
    background-repeat: no-repeat;
    background-size: cover;
}

.empower_business_sec::after {
    position: absolute;
    content: "";
    background-image: url("../images/vec3.png");
    width: 210px;
    height: 210px;
    right: 0px;
    bottom: 0px;
    background-repeat: no-repeat;
    background-size: 100%;
    animation: 5s linear 0s infinite normal none running abc;
    z-index: -1;
}

.growth_starts_secc.supercharge_secc .grwth_textt>p {
    font-size: 18px;
}

.growth_starts_secc.supercharge_secc .grwth_textt>a {
    font-size: 17px;
    color: var(--theme);
    font-weight: 600;
    display: block;
    margin: 10px 0px;
}

.growth_starts_secc.supercharge_secc .grwth_textt>ul {
    margin-bottom: 0px;
    margin-top: 20px;
}

.growth_starts_secc.supercharge_secc .grwth_textt>ul>li>span {
    font-size: 18px;
    color: rgb(0, 0, 0);
    font-weight: 600;
}

.growth_starts_secc.supercharge_secc .grwth_textt>ul>li>a.pkgg_btn {
    font-size: 18px;
    color: var(--theme);
    font-weight: 600;
    border-bottom: 1px solid rgb(89, 67, 112);
    transition: all 0.3s ease-in-out 0s;
    padding: 5px 0px;
}

.growth_starts_secc.supercharge_secc .grwth_img>img {
    height: 495px;
}

.testi_main_box {
    border: 1px solid rgb(221, 221, 221);
    padding: 90px 20px 30px;
    border-radius: 10px;
    height: 360px;
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: space-between;
}

.testi_main_box>img.testi_img {
    position: absolute;
    width: 110px;
    border-radius: 50%;
    border-width: 2px;
    border-style: solid;
    border-image: initial;
    border-color: var(--theme);
    top: -50px;
    height: 110px;
}

.testimonials_secc .theme-heading {
    margin-bottom: 4%;
}

.testi_main_box>p {
    font-size: 18px;
    color: rgb(0, 0, 0);
    font-family: Poppins;
    font-weight: 500;
    line-height: 1.6;
}

.testi_main_box>span {
    font-size: 16px;
    font-family: Poppins;
    font-weight: 500;
    color: rgb(60, 60, 60);
}

.testimonials_secc .slick-list {
    padding-top: 50px;
}

.testimonials_secc .slick-active {
    opacity: 1;
}

.testimonials_secc.logos_sec .slick-prev {
    top: 50%;
}

.testimonials_secc.logos_sec .slick-next {
    top: 50%;
}

.start_your_journey_sec {
    background: rgb(250, 244, 255);
}

.start_your_journey_sec .bottom_counter_wrpp {
    margin-top: 40px;
    background: rgb(255, 255, 255);
    border: 1px solid rgb(231, 229, 233);
    padding: 20px;
    text-align: center;
    border-radius: 15px;
    height: 210px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-evenly;
    font-size: 38px;
    color: var(--theme);
    font-weight: 700;
    gap: 20px;
}

.start_your_journey_sec .bottom_counter_wrpp>h3 {
    font-size: 18px;
    color: var(--theme);
    margin: 0px;
}

.start_your_journey_sec .bottom_counter_wrpp>span {
    font-size: 38px;
    color: var(--theme);
    font-weight: 600;
    display: contents;
}

.start_your_journey_sec .bottom_counter_wrpp {
    transition: all 0.3s ease-in-out 0s;
}

.start_your_journey_sec .bottom_counter_wrpp:hover {
    transition: all 0.3s ease-in-out 0s;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
}

.radio_wrpp {
    display: flex;
    flex-flow: column wrap;
}

.radio_wrpp label {
    display: flex;
    cursor: pointer;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    margin-bottom: 0.375em;
}

.radio_wrpp label input {
    position: absolute;
    left: -9999px;
}

.radio_wrpp label input:checked+span {
    background: var(--gradient);
    color: white;
    padding: 2px 20px;
}

.radio_wrpp label input:checked+span::before {
    box-shadow: rgb(255, 255, 255) 0px 0px 0px 0.4375em inset;
}

.radio_wrpp label span {
    display: flex;
    align-items: center;
    border-radius: 99em;
    transition: all 0.25s ease 0s;
    color: rgb(65, 65, 129);
    padding: 2px 20px 2px 0px;
}

.radio_wrpp label span:hover {
    background-color: rgb(214, 214, 229);
}

.radio_wrpp label span::before {
    display: flex;
    flex-shrink: 0;
    content: "";
    background-color: rgb(255, 255, 255);
    width: 1.5em;
    height: 1.5em;
    border-radius: 50%;
    margin-right: 0.375em;
    transition: all 0.25s ease 0s;
    box-shadow: inset 0 0 0 0.125em var(--theme);
}

.contact_form_secc .form_wrpp {
    background: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding: 40px 30px;
    border-radius: 10px;
}

.contact_form_secc .form_wrpp>h2 {
    font-size: 30px;
    color: var(--theme);
    font-weight: 600;
    margin-bottom: 50px;
}

.contact_form_secc .form_wrpp form input {
    width: 100%;
    height: 50px;
    border: 0px;
    margin-bottom: 20px;
    background-color: rgb(242, 242, 242);
    padding: 15px;
    border-radius: 5px;
    color: rgb(0, 0, 0);
}

.contact_form_secc .form_wrpp form input::placeholder {
    color: rgb(0, 0, 0);
    font-family: Roboto, sans-serif;
}

.contact_form_secc .form_wrpp .radio_wrpp>h3 {
    font-size: 17px;
    color: var(--theme);
    font-weight: 700;
    margin-bottom: 13px;
}

.contact_form_secc .form_wrpp .radio_wrpp {
    background: rgb(242, 242, 242);
    padding: 20px 10px;
    border-radius: 5px;
    margin-bottom: 30px;
}

.radio_wrpp label span {
    gap: 10px;
    font-size: 15px;
    color: rgb(0, 0, 0);
    font-family: roboto;
    font-weight: 500;
}

.radio_wrpp label span::before {
    width: 15px;
    height: 15px;
    background: rgb(192, 192, 192);
}

.contact_form_secc .form_wrpp ul>li {
    width: 33.3333%;
}

.contact_form_secc .form_wrpp ul>li:nth-child(2) a {
    width: 100%;
    background-color: rgb(255, 188, 71);
    text-align: center;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    color: var(--theme);
    font-weight: 600;
}

.contact_form_secc .form_wrpp ul {
    gap: 10px;
}

.contact_imgg>img {
    width: 100%;
    height: 790px;
    object-fit: cover;
    border-radius: 10px;
    filter: brightness(0.8);
}

.contact_imgg {
    margin-left: -50px;
    z-index: -1;
    position: relative;
}

.growth_starts_secc .grwth_textt {
    position: relative;
}

.growth_starts_secc .grwth_textt::after {
    position: absolute;
    content: "";
    background-color: var(--theme);
    width: 0px;
    height: 5px;
    left: 0px;
    bottom: 0px;
    border-radius: 0px 0px 10px 10px;
    transition: all 0.1s ease 0.1s;
}

.growth_starts_secc .grwth_textt:hover::after {
    width: 100%;
    transition: all 0.3s ease-in-out 0.3s;
}

.growth_starts_secc .grwth_textt::before {
    position: absolute;
    content: "";
    width: 5px;
    height: 0px;
    background: var(--theme);
    left: 0px;
    top: 0px;
    border-radius: 10px 0px 0px 10px;
    transition: all 0.2s ease-in-out 0.3s;
}

.growth_starts_secc .grwth_textt:hover::before {
    transition: all 0.1s ease-in-out 0.1s;
    height: 100%;
}

.testi_main_box::after {
    position: absolute;
    content: "";
    background: var(--theme);
    width: 0px;
    height: 5px;
    left: 0px;
    bottom: 0px;
    border-radius: 0px 0px 10px 10px;
    transition: all 0.1s ease-in-out 0.2s;
}

.testi_main_box:hover::after {
    transition: all 0.3s ease-in-out 0.3s;
    width: 100%;
}

.testi_main_box::before {
    position: absolute;
    content: "";
    background: var(--theme);
    width: 5px;
    height: 0px;
    left: 0px;
    top: 0px;
    border-radius: 10px 0px 0px 10px;
    transition: all 0.3s ease-in-out 0.3s;
}

.testi_main_box:hover::before {
    transition: all 0.1s ease-in-out 0.1s;
    height: 100%;
}

.main_footer {
    background-color: var(--theme);
    padding: 60px 0px 20px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.main_footer h3 {
    color: rgb(255, 255, 255);
    font-size: 33px;
    font-weight: 500;
    margin-bottom: 30px;
}

.main_footer ul>li>a {
    font-size: 19px;
    color: rgb(255, 255, 255);
    font-family: Roboto;
    font-weight: 300;
    transition: all 0.3s ease 0s;
    border-bottom: 1px solid transparent;
    display: block;
    width: fit-content;
    margin-bottom: 15px;
}

.main_footer ul>li>a:hover {
    transition: all 0.3s ease 0s;
    border-bottom: 1px solid;
    transform: translate(5px, 0px);
    color: rgb(255, 188, 71);
}

.footer_bottm p {
    color: rgb(255, 255, 255);
    font-size: 19px;
    margin: 0px;
}

.footer_bottm {
    border-top: 1px solid rgb(126, 113, 150);
    margin-top: 20px;
    padding-top: 30px;
}

.main_footer span {
    font-size: 20px;
    font-family: Roboto;
    display: block;
    margin-bottom: 30px;
    color: rgb(175, 105, 238);
}

.main_footer a {
    font-size: 19px;
    color: rgb(255, 255, 255);
    font-family: Roboto;
    font-weight: 300;
    transition: all 0.3s ease 0s;
    border-bottom: 1px solid transparent;
    display: block;
    width: fit-content;
    margin-bottom: 15px;
}

.main_footer .social_media_links>li>a {
    font-size: 20px;
    border: 1px solid;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease 0s;
}

.main_footer .social_media_links {
    gap: 20px;
    margin: 0px;
}

.main_footer .social_media_links>li>a:hover {
    transform: none;
    background: transparent;
    color: rgb(255, 255, 255);
    border: 0px;
}

.main_footer .social_media_links>li>a:hover .fa-facebook-f {
    background: rgb(63, 81, 181);
}

.main_footer .social_media_links>li>a:hover .fa-linkedin-in {
    background: rgb(2, 136, 209);
}

.main_footer .social_media_links>li>a:hover .fa-twitter {
    background: rgb(3, 169, 244);
}

.main_footer .social_media_links>li>a:hover .fa-instagram {
    background: radial-gradient(circle at 30% 107%, rgb(253, 244, 151) 0%, rgb(253, 244, 151) 5%, rgb(253, 89, 73) 45%, rgb(214, 36, 159) 60%, rgb(40, 90, 235) 90%);
}

.main_footer .social_media_links>li>a>i {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease 0s;
}

.main_footer .social_media_links>li>a:hover i {
    border-radius: 10px;
    transform: rotate(15deg) scale(1.2);
    box-shadow: rgb(255, 255, 255) 0px 2px 40px -5px;
    transition: all 0.1s ease-in-out 0s;
}

.footer_bottm img {
    margin-inline-start: auto;
    display: block;
}

.main_footer::after {
    z-index: -1;
    position: absolute;
    content: "";
    background-image: url("../images/vec4.png");
    width: 100%;
    height: 100%;
    left: 0px;
    top: 10%;
    background-size: 100%;
    background-repeat: no-repeat;
}

.pkgg_btn:hover {
    background: var(--gradient);
    border-radius: 20px;
    transition: all 0.3s ease-in-out 0s;
    color: rgb(255, 255, 255) !important;
    padding: 5px 20px !important;
    border-bottom: transparent !important;
    font-weight: 400 !important;
}

.container {
    transform: scale(0.9);
}

.mtt-2 {
    margin-top: -40px;
}

.typed-cursor {
    font-weight: 300;
    margin-left: 6px;
    color: blanchedalmond;
}

.we_are_up_secc .slick-slide {
    opacity: 1;
}

.empower_business_sec .custom_tabbing_wrpp>ul {
    text-align: center;
    display: block !important;
}

.empower_business_sec .custom_tabbing_wrpp>ul>li {
    display: inline-block;
    margin: 10px;
}

.home_pgg .growth_starts_secc .grwth_img>img {
    height: 420px;
}

.home_pgg .growth_starts_secc .grwth_btn>a {
    height: 390px;
}

/* home page end */

.inner_banner {
    background-color: var(--theme);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: 100px;
}

.inner_banner .inner_banner_heading>h1 {
    font-size: 22px;
    line-height: 1.5;
    margin: 0px;
}

.inner_banner .inner_banner_heading>h1>span {
    display: block;
    color: rgb(255, 255, 255);
    font-size: 57.23px;
    font-weight: 600;
    text-transform: capitalize;
}

.contact_form_secc .form_wrpp>form>textarea {
    width: 100%;
    height: 320px;
    background-color: rgb(242, 242, 242);
    border: 0px;
    resize: none;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.contact_form_secc .form_wrpp>form>textarea::placeholder {
    color: rgb(0, 0, 0);
    font-family: Roboto;
}

.btn3 {
    border: 0px;
    width: 100%;
    background-color: rgb(255, 188, 71);
    color: var(--theme);
    font-size: 18px;
    font-weight: 500;
    height: 65px;
    border-radius: 5px;
}

.inner_banner::after {
    position: absolute;
    content: "";
    background-image: url("../images/vec3.png");
    width: 19%;
    height: 90%;
    left: 0px;
    top: 0px;
    background-size: cover;
    background-repeat: no-repeat;
}

.inner_banner::before {
    position: absolute;
    content: "";
    background-image: url("../images/vec2.png");
    width: 250px;
    height: 250px;
    right: 50px;
    background-size: cover;
    background-repeat: no-repeat;
    top: -20px;
    animation: 5s linear 0s infinite normal none running abc;
}

.thankyou_secc {
    text-align: center;
    height: 100%;
    padding: 50px 0px;
}

.thankyou_secc .thankyou_div>img {
    width: 50%;
}

.privacy_secc p {
    color: rgb(30, 30, 30);
    font-size: 25px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 30px;
}

.privacy_secc .privacy_info_div {
    background-color: rgb(250, 244, 255);
    padding: 30px 0px 0px;
}

.privacy_secc h2 {
    font-size: 40px;
    color: var(--theme);
    font-weight: 600;
    margin-bottom: 40px;
}

.privacy_secc ul>li {
    color: rgb(0, 0, 0);
    position: relative;
    font-size: 25px;
    font-family: Roboto;
    line-height: 1.7;
    margin-bottom: 20px;
    padding-left: 40px;
}

.privacy_secc ul {
    margin-bottom: 30px;
}

.privacy_secc ul>li:last-child {
    margin: 0px;
}

.privacy_secc ul>li::after {
    position: absolute;
    background: var(--theme);
    width: 15px;
    height: 15px;
    left: 0px;
    top: 10px;
    content: "";
    border-radius: 50%;
}

.privacy_secc span {
    font-size: 25px;
    color: rgb(0, 0, 0);
    margin-bottom: 30px;
    display: block;
    font-family: Roboto;
    line-height: 1.4;
    padding-left: 40px;
}

.privacy_secc span>a {
    color: var(--theme);
    font-weight: 500;
}

.privacy_secc p:last-child {
    margin: 0px;
}

section.privacy_secc.all-sec {
    padding-bottom: 0px;
}

.custom_plan_secc {
    background-color: rgb(250, 244, 255);
    padding: 40px 0px;
}

.seo_theme_heading>h2 {
    font-size: 50px;
    color: var(--theme);
    text-align: center;
    font-weight: 600;
    font-family: Poppins;
    line-height: 1.2;
    margin-bottom: 15px;
}

.seo_theme_heading>p {
    text-align: center;
    font-size: 20px;
    color: rgb(0, 0, 0);
    font-family: Poppins;
    font-weight: 400;
}

.custom_plan_secc .custom_plan_wrp>.cust_form_wrpp {
    margin-top: 3%;
}

.custom_plan_secc .custom_plan_wrp>.cust_form_wrpp label {
    font-size: 16.29px;
    color: rgb(0, 0, 0);
    font-family: Poppins;
    font-weight: bold;
}

.custom_plan_secc .custom_plan_wrp>.cust_form_wrpp .inpst_wrp {
    display: flex;
    align-items: center;
    gap: 10px;
}

.custom_plan_secc .custom_plan_wrp>.cust_form_wrpp .inpst_wrp input {
    width: 170px;
    height: 60px;
    padding: 20px;
    border: 1px solid rgb(229, 229, 229);
    border-radius: 5px;
}

.custom_plan_secc .custom_plan_wrp>.cust_form_wrpp .inpst_wrp input::placeholder {
    color: rgb(0, 0, 0);
    font-weight: 600;
}

.btn4 {
    background-color: var(--theme);
    display: flex;
    width: fit-content;
    gap: 20px;
    padding: 0px 30px;
    height: 60px;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-size: 16.29px;
    color: rgb(255, 255, 255);
    font-weight: 500;
}

.btn4>i {
    border: 2px solid rgb(255, 255, 255);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.btn4:hover {
    color: rgb(255, 255, 255);
    background: var(--gradient);
}

.grow_fastr_div>div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 25px;
}

.grow_fastr_div {
    text-align: center;
    margin-top: 8%;
}

.grow_fastr_div>div>span {
    font-size: 47.05px;
    color: var(--theme);
    font-weight: 600;
    line-height: 1.1;
}

.grow_fastr_div>p {
    font-size: 22px;
    font-weight: 500;
    color: var(--theme);
    margin: 0px;
}

.btn5 {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    border-radius: 5px;
    color: var(--theme);
    font-size: 14px;
    font-family: Poppins;
    font-weight: 700;
    transition: all 0.3s ease-in-out 0s;
    position: relative;
    z-index: 0;
}

.btn5:hover {
    transition: all 0.3s ease-in-out 0s;
}

.btn5::after {
    content: "";
    z-index: -1;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgb(255, 188, 71);
    left: 0px;
    top: 0px;
    transition: all 0.5s ease 0s;
    border-radius: 5px;
}

.btn5::before {
    content: "";
    background: linear-gradient(45deg, rgb(255, 188, 71), rgb(255, 188, 71), rgb(159, 103, 5), rgb(255, 188, 71), rgb(255, 188, 71), rgb(167, 108, 4), rgb(255, 188, 71), rgb(120, 79, 6)) 0% 0% / 600%;
    position: absolute;
    top: -2px;
    left: -2px;
    z-index: -1;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    filter: blur(8px);
    animation: 20s linear 0s infinite normal none running glowing;
    transition: opacity 0.3s ease-in-out 0s;
    border-radius: 10px;
    opacity: 0;
}

.btn5:hover::after {
    border-radius: 5px;
}

.btn5:hover::before {
    opacity: 1;
}

.our_customer_grow {
    margin-top: 4%;
}

.our_customer_grow>p {
    font-size: 20px;
    color: rgb(0, 0, 0);
    font-family: Poppins;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 30px;
}

.our_customer_grow h2 {
    font-size: 40px;
    color: var(--theme);
    font-weight: 600;
}

.our_customer_grow ul li {
    padding-left: 20px;
    font-size: 24px;
    color: rgb(0, 0, 0);
    margin-bottom: 15px;
    line-height: 1.2;
    position: relative;
    transition: all 0.2s ease 0s;
    max-width: fit-content;
    padding-bottom: 5px;
}

.our_customer_grow ul li::after {
    position: absolute;
    content: "";
    background: rgb(0, 0, 0);
    width: 7px;
    height: 7px;
    left: 0px;
    top: 8px;
    border-radius: 50%;
}

.our_customer_sticky {
    background: var(--theme);
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.our_customer_sticky>img {
    border-radius: 5px;
    width: 100%;
    margin-bottom: 20px;
}

.our_customer_sticky>h3 {
    font-size: 28px;
    color: rgb(255, 255, 255);
    margin-bottom: 17px;
}

.our_customer_sticky>p {
    font-family: Poppins;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 30px;
    font-size: 21px !important;
    color: rgb(255, 255, 255) !important;
}

.our_customer_sticky>a {
    height: 50px;
    margin-top: 10px;
}

.our_customer_sticky::after {
    position: absolute;
    content: "";
    background-image: url("../images/vec6.png");
    width: 150px;
    height: 100px;
    bottom: 16%;
    background-repeat: no-repeat;
    background-size: cover;
    right: 0px;
    opacity: 0.1;
    z-index: -1;
}

.local_seo_pg_banner {
    position: relative;
}

.local_seo_pg_banner .lseo_banner_vec {
    position: absolute;
    bottom: -42%;
    left: 0px;
    width: 270px;
}

.local_seo_pg_banner .lseo_banner_wrpp {
    background-color: rgb(255, 255, 255);
    padding: 20px;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    transition: all 0.3s ease-in-out 0s;
    position: absolute;
    left: 85px;
    bottom: 20px;
}

.lseo_banner_wrpp>ul>li>h3 {
    font-size: 14px;
    color: var(--theme);
    font-weight: bold;
    width: 80%;
    margin-bottom: 0px;
}

.lseo_banner_wrpp>ul>li>span {
    color: rgb(127, 127, 127);
    font-size: 14px;
}

.lseo_banner_wrpp>ul>li>img {
    width: 65px;
    border-radius: 50%;
    border: 3px solid var(--theme);
}

.lseo_banner_wrpp>ul {
    margin: 0px;
}

.lseo_banner_wrpp>ul>li>ul>li>i {
    color: rgb(255, 188, 71);
}

.lseo_banner_wrpp>ul>li>ul {
    gap: 5px;
}

.lseo_banner_wrpp>ul:last-child li>img {
    margin-bottom: -40px !important;
}

.lseo_banner_wrpp>p {
    color: rgb(127, 127, 127);
    font-family: Poppins;
    font-size: 12px;
    font-weight: 400;
    width: 150px;
    line-height: 1.3;
    margin-top: 20px;
    margin-bottom: 20px;
}

.local_seo_pg_banner>.lseo_chart_img {
    position: absolute;
    right: 0px;
    top: -40px;
}

.lseo_banner_wrpp2 {
    background-color: rgb(255, 255, 255);
    width: 210px;
    height: 210px;
    padding: 30px 40px;
    position: relative;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: -1;
}

.lseo_banner_wrpp2>h4 {
    font-size: 60px;
    color: rgb(0, 0, 0);
    line-height: 22px;
    margin: 0px;
    text-align: center;
    font-weight: 700;
}

.lseo_banner_wrpp2>h4>span {
    font-size: 15px;
    font-weight: 400;
}

.lseo_banner_wrpp2>img {
    position: absolute;
    left: 0px;
    top: 0px;
}

.lseo_banner_wrpp2::before {
    position: absolute;
    content: "";
    background-image: url("../images/vec2.png");
    width: 115%;
    height: 115%;
    background-size: 100%;
    background-repeat: no-repeat;
    right: -7%;
    bottom: -7%;
    animation: 5s linear 0s infinite normal none running abc;
    z-index: -1;
}

.local_seo_pg_banner .lseo_main_banner_imgg {
    width: 80%;
    display: block;
    margin-inline-start: auto;
}

.local_seo_pg_banner:hover .lseo_banner_wrpp {
    transition: all 0.3s ease-in-out 0s;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
}

.local_seo_pg_banner:hover .lseo_banner_wrpp>ul:last-child li>img {
    animation: 1s ease 0s infinite normal none running blinkin;
}

@keyframes blinkin {
    0% {
        box-shadow: rgba(52, 25, 80, 0.73) 0px 0px 0px 0px;
        border-radius: 50%;
    }

    100% {
        box-shadow: rgba(52, 25, 80, 0.04) 0px 0px 0px 15px;
        border-radius: 50%;
    }
}

.why_need_to_improve_secc {
    background-color: rgb(250, 244, 255);
}

.why_need_to_improve_secc {
    background-color: rgb(250, 244, 255);
}

.why_need_to_improve_secc .our_customer_grow {
    margin: 0px;
}

.why_need_to_improve_secc .our_customer_grow ul li {
    font-size: 20px;
}

.why_need_to_improve_secc .our_customer_grow p {
    font-size: 20px;
    color: rgb(0, 0, 0);
    font-weight: 400;
    line-height: 29px;
    font-family: Poppins;
    margin-bottom: 40px;
}

.local_seo_pgg .growth_starts_secc.supercharge_secc .grwth_img>img {
    height: 470px;
}

.local_seo_pgg .growth_starts_secc .grwth_textt>h3 {
    font-size: 23px;
}

.agency_for_local_seo_sec.all-sec .nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
    color: var(--theme);
    border-width: 0px 0px 1px;
    border-top-style: initial;
    border-right-style: initial;
    border-left-style: initial;
    border-color: initial;
    border-image: initial;
    border-bottom-style: solid;
    text-align: left;
    border-radius: 0px;
}

.agency_for_local_seo_sec.all-sec .nav-tabs .nav-link {
    text-align: left;
    font-size: 18px;
    color: rgb(127, 127, 127);
    font-family: Poppins;
    font-weight: 600;
    border-top: 0px;
    border-right: 0px;
    border-left: 0px;
    border-image: initial;
    border-bottom: 1px solid var(--theme);
    padding: 20px 0px;
    border-radius: 0px;
    opacity: 1;
    display: block !important;
    width: 100% !important;
}

.agency_for_local_seo_sec.all-sec .nav-item {
    width: 100%;
}

.cursornone ul li {
    cursor: default;
}

.cursornone ul li:hover {
    transform: translate(0px, 0px);
    border-bottom: none;
}

.agency_tabss_content>h2 {
    font-size: 31px;
    color: var(--theme);
    font-weight: 600;
    margin-bottom: 25px;
}

.agency_tabss_content>p {
    font-size: 22px;
    color: rgb(0, 0, 0);
    font-family: Roboto;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 20px;
}

.agency_tabss_content>ul>li {
    padding-left: 25px;
    font-size: 18px;
    color: rgb(0, 0, 0);
    font-family: Roboto;
    margin-bottom: 18px;
    position: relative;
    cursor: pointer;
    transition: all 0.2s ease-in-out 0s;
    border-bottom: 1px solid transparent;
    padding-bottom: 5px;
}

.agency_tabss_content>ul {
    margin-bottom: 30px;
}

.agency_tabss_content>ul>li::after {
    position: absolute;
    content: "";
    background: rgb(96, 45, 143);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    left: 0px;
    top: 8px;
}

.agency_for_local_seo_sec.all-sec .nav-tabs .nav-link:hover,
.nav-tabs .nav-link:focus {
    border-left: 0px;
    border-right: 0px;
    border-top: 0px;
}

.improve_your_rankings_sec h2 {
    color: var(--theme);
    font-size: 50px;
    width: 80%;
    margin: 0px auto 20px;
    font-weight: 600;
}

.improve_your_rankings_sec p {
    font-size: 24px;
    color: rgb(0, 0, 0);
    font-family: Poppins;
    font-weight: 400;
    margin-bottom: 50px;
}

.rank_box_wrpp {
    background-color: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.35) 7px 5px 17px;
    padding: 30px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    text-align: center;
    border-radius: 10px;
    position: relative;
    height: 100%;
    cursor: pointer;
    transition: all 0.4s ease-in-out 0s;
}

.rank_box_wrpp>img {
    object-fit: contain;
    width: 120px !important;
    height: 120px !important;
}

.rank_box_wrpp>span {
    font-size: 17px;
    font-weight: 600;
    color: var(--theme);
}

.rank_box_wrpp::after {
    position: absolute;
    content: "";
    left: 0px;
    top: 0px;
    width: 5px;
    height: 0px;
    background: var(--theme);
    border-radius: 10px 0px 0px 10px;
    transition: all 0.2s ease-in-out 0.2s;
}

.rank_box_wrpp::before {
    position: absolute;
    content: "";
    background: var(--theme);
    width: 0px;
    height: 5px;
    bottom: 0px;
    border-radius: 0px 0px 10px;
    transition: all 0.2s ease-in-out 0s;
    left: 0px;
}

.rank_box_wrpp:hover::after {
    height: 100%;
    transition: all 0.2s ease-in-out 0s;
}

.rank_box_wrpp:hover::before {
    width: 100%;
    transition-delay: 0.2s;
}

.improve_your_rankings_sec .slick-slide {
    opacity: 1;
}

.improve_rank_slider .slick-list {
    padding-bottom: 30px;
    padding-top: 20px;
    padding-right: 15%;
    width: 90%;
    margin-inline-start: auto;
}

.improve_your_rankings_sec .slick-prev {
    top: 38%;
    left: 3% !important;
}

.improve_your_rankings_sec .slick-next {
    right: unset;
    left: 3%;
    top: 58%;
}

.transforming_Struggling_slider .slick-track {
    margin: 30px 0px;
}

.transforming_Struggling_slider .slick-prev {
    top: 50%;
}

.transforming_Struggling_slider .slick-prev {
    left: -50px;
}

.transforming_Struggling_slider .slick-next {
    top: 50%;
}

.transforming_Struggling_slider .slick-next {
    right: -50px;
}

.transforming_Struggling_slider .slick-next>i {
    color: var(--theme);
    font-size: 20px;
    font-weight: bold;
    border: 2px solid;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.transforming_Struggling_slider .slick-prev>i {
    color: var(--theme);
    font-size: 20px;
    font-weight: bold;
    border: 2px solid;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.transforming_Struggling_slider .slick-prev::before {
    content: " ";
}

.transforming_Struggling_slider .slick-next::before {
    content: " ";
}

.girl-img>img {
    width: 100%;
}

.web-banner-imgs {
    width: 90%;
    margin: 0px 0px 0px auto;
    display: flex;
    position: relative;
}

.web-banner-right-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.web-banner-right-box::before {
    position: absolute;
    content: "";
    background: url("../images/web-banner-circle.png") 0% 0% / contain no-repeat;
    width: 761px;
    height: 761px;
    left: 0px;
    right: 0px;
    z-index: -1;
}

.revenue-box {
    position: absolute;
    right: 0px;
    top: 22%;
    background: rgb(255, 188, 71);
    width: 44.3%;
    border-radius: 10px;
    padding: 30px 0px;
}

.revenue-box h2 {
    font-size: 35px;
    color: rgb(52, 25, 80);
    margin: 0px;
    line-height: 1;
}

.revenue-box h2 span {
    font-size: 21px;
    display: block;
    margin: 5px 0px 0px;
}

.web-dev-banner .banner_text h2 {
    font-weight: 600;
    font-size: 57px;
}

.expert-counter-box {
    position: absolute;
    width: 53%;
    background: rgb(175, 105, 238);
    border-radius: 10px;
    bottom: 9%;
    padding: 15px 20px;
}

.expert-counter-box ul {
    display: flex;
    align-items: center;
    margin: 0px;
    gap: 12px;
}

.expert-counter-box ul h3 {
    font-size: 30px;
    color: rgb(255, 255, 255);
    margin: 0px;
    font-weight: 700;
}

.expert-counter-box ul h3 span {
    font-size: 18px;
    display: block;
}

.girl-img {
    position: relative;
    display: flex;
}

.day-range {
    position: absolute;
    top: 70px;
    left: -30px;
    background: rgb(229, 200, 255);
    border-radius: 50%;
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.day-range h4 {
    font-size: 38px;
    font-weight: 700;
    color: rgb(52, 25, 80);
    text-align: center;
    margin: 0px;
    line-height: 1;
    text-transform: capitalize;
}

.day-range h4 span {
    font-size: 21px;
    display: block;
}

.day-range>span {
    position: absolute;
    top: 7px;
    width: 85px;
}

.day-range>span img {
    width: 100%;
}

.web-dev-banner .banner_text>p {
    margin-bottom: 50px;
}

section.home-banner.all-sec.web-dev-banner {
    padding-top: 150px !important;
}

.web-banner-imgs::before {
    position: absolute;
    content: "";
    background: rgb(255, 235, 199);
    width: 24px;
    height: 24px;
    bottom: -10px;
    left: -30px;
    border-radius: 50%;
}

.web-banner-imgs::after {
    position: absolute;
    content: "";
    background: rgb(234, 243, 223);
    width: 65px;
    height: 65px;
    top: 40px;
    right: -100px;
    border-radius: 50%;
}

section.level-up-sec .theme-heading>p {
    font-family: Roboto;
    font-size: 22px;
    color: rgb(255, 255, 255);
    font-weight: 400;
}

.level-icon img {
    width: auto;
    height: 110px;
    object-fit: contain;
}

.level-box {
    background: rgb(255, 255, 255);
    height: 370px;
    padding: 35px 25px;
    border-radius: 15px;
}

.level-slider .slick-slide {
    margin: 0px 8px;
    opacity: 1;
}

.level-txt h3 {
    font-size: 25px;
    color: rgb(52, 25, 80);
    margin: 0px 0px 18px;
}

.level-txt p {
    font-size: 20px;
    color: rgb(0, 0, 0);
    font-weight: 400;
    line-height: 1.5;
    margin: 0px;
}

.level-icon {
    margin: 0px 0px 15px;
}

section.empower_business_sec.level-up-sec .theme-heading {
    margin: 0px 0px 40px;
}

.level-slider .slick-prev {
    display: none !important;
}

.level-slider .slick-next.vertical-next-btn {
    height: 100%;
    width: 85px;
    background: rgb(255, 255, 255);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.level-slider {
    padding-right: 70px;
}

.level-slider .slick-next.vertical-next-btn::before {
    content: "";
    display: none;
}

button.slick-next.vertical-next-btn span {
    font-size: 25px;
    font-weight: 600;
    display: block;
    color: rgb(52, 25, 80);
    writing-mode: tb;
    padding-top: 35px;
    transform: rotate(180deg);
}

.level-slider .slick-next.vertical-next-btn i {
    position: absolute;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(52, 25, 80);
    bottom: 20px;
    border: 2px solid rgb(52, 25, 80);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-weight: 700;
}

.sec-btns {
    width: 55%;
    margin: 0px auto;
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 10px;
}

.sec-btns .btn5 {
    height: unset;
}

section.empower_business_sec.level-up-sec .sec-btns {
    margin-top: 50px;
}

section.empower_business_sec.level-up-sec {
    padding: 25px 0px;
}

section.empower_business_sec.level-up-sec::before {
    top: 40px;
}

.web-sol-slider .slick-list {
    padding-bottom: 30px;
    padding-top: 20px;
    padding-right: 20%;
    width: 90%;
    margin-inline-start: auto;
}

.web-sol-txt h3 {
    font-size: 21px;
    color: rgb(52, 25, 80);
    margin: 0px 0px 23px;
}

.web-sol-txt p {
    font-size: 16px;
    font-family: Poppins;
    font-weight: 400;
    color: rgb(0, 0, 0);
    line-height: 1.7;
}

.web-sol-icon img {
    width: auto;
    height: auto;
}

.web-sol-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 180px;
}

.web-sol-box {
    background: rgb(250, 250, 250);
    box-shadow: rgba(0, 0, 0, 0.14) 5px 5px 15px;
    height: 480px;
    padding: 20px 15px;
    border-radius: 5px;
}

.web-sol-slider .slick-slide {
    opacity: 1;
    margin: 0px 15px;
}

section.improve_your_rankings_sec.web-sol-sec>p {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.7;
}

section.improve_your_rankings_sec.web-sol-sec p.purple-txt {
    color: rgb(52, 25, 80);
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 20px;
}

section.secure-web-sec .purple-box {
    background: rgb(52, 25, 80);
    border-radius: 15px;
    padding: 50px 0px;
}

section.secure-web-sec {
    margin: 30px 0px 90px;
}

section.secure-web-sec h2 {
    font-weight: 600;
    font-size: 34px;
    margin: 0px 0px 35px;
}

section.secure-web-sec h2 span {
    font-size: 43px;
    color: rgb(255, 188, 71);
}

section.secure-web-sec .btn5::after {
    background: rgb(255, 255, 255);
}

section.secure-web-sec .sec-btns {
    gap: 20px;
    width: 50%;
}

section.fav-theme-sec.logos_sec {
    background: rgb(250, 244, 255);
    padding: 50px 0px 60px;
}

section.fav-theme-sec .theme-heading>h2 {
    margin-bottom: 30px;
}

.theme-box h3 {
    color: var(--theme);
    font-size: 25px;
    margin: 0px 0px 20px;
}

.theme-img img {
    height: auto;
    width: 100%;
    object-fit: cover;
    object-position: center top;
}

.theme-box {
    background: rgb(255, 255, 255);
    padding: 30px 25px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.15) 2.95px 2.95px 5px 2px;
    position: relative;
    overflow: hidden;
}

.theme-slider .slick-slide {
    margin: 20px 15px;
}

.theme-box a {
    font-size: 18px;
    font-weight: 600;
    color: var(--theme);
    border-bottom: 1px solid;
    display: inline-block;
    margin: 40px 0px 0px;
    position: relative;
    z-index: 5;
}

.theme-desc {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 100%;
    background: rgb(255, 255, 255);
    transition: all 0.5s ease-in-out 0s;
}

.theme-box:hover .theme-desc {
    left: 0px;
    padding: 30px 25px;
}

.theme-desc p {
    font-weight: 600;
    font-size: 20px;
    color: rgb(0, 0, 0);
    line-height: 1.7;
}

.logos_sec .theme-slider .slick-prev,
.logos_sec .theme-slider .slick-next {
    top: 50%;
}

.web-sol-tab-sec .nav-tabs .nav-link.active::before {
    position: absolute;
    content: "\f054";
    font-family: "Font Awesome 5 Pro";
    color: var(--theme);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    left: 0px;
}

.web-sol-tab-sec .nav-tabs .nav-link.active {
    padding-left: 40px;
}

/* Web Sol Tabs */
/* Web Development Inner Page */
/* -------------------------------- WORK DONE BY AHMED ------------------------------- */

/* seo services page */

.seo_serv_pgg .banner_values::before {
    display: none;
}

.seo_serv_pgg .banner_values::after {
    top: 0px;
    width: 100%;
    height: 100%;
    background-size: cover;
    left: 0px;
    /* animation: 5s linear 0s infinite normal none running abc; */
}

.seo_serv_pgg .home-banner {
    height: 700px;
    display: flex;
    align-items: center;
}

.seo_serv_pgg .banner_text>h1 {
    font-size: 53px;
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 30px;
}

.seo_serv_pgg .banner_values {
    height: 600px;
    width: 680px;
}

.seo_serv_pgg .home-banner .row {
    align-items: center;
}

.seo_serv_pgg .home-banner img.seo-srv-banner.position-absolute {
    right: 0px;
    top: 14%;
    width: 40%;
    height: 90%;
    object-fit: contain;
    object-position: right center;
    z-index: 1;
}

.seo_serv_pgg .banner_values>span:nth-child(3) {
    right: 0px;
}

.professional_seo_serv_side_wrp {
    background-color: var(--theme);
    padding: 15px;
    text-align: center;
    border-radius: 10px;
}

.professional_seo_serv_side_wrp>img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    object-position: center top;
    margin-bottom: 30px;
    border-radius: 10px;
}

.professional_seo_serv_side_wrp>h3 {
    font-size: 25px;
    color: rgb(255, 255, 255);
    font-weight: 600;
    margin-bottom: 30px;
}

.professional_seo_serv_side_wrp>p {
    font-size: 19px;
    color: rgb(255, 255, 255);
    line-height: 1.6;
    margin-bottom: 24px;
}

.professional_seo_serv_side_wrp>a {
    height: 55px;
    margin-bottom: 10px;
    align-items: center;
    display: flex;
    justify-content: center;
}

.professional_seo_serv_side_wrp>a:last-child {
    margin: 0px;
    background: rgb(255, 255, 255);
}

.professional_seo_serv_side_wrp .btn5::after {
    background-color: rgb(255, 255, 255);
}

.professional_seo_serv_small_wrpp {
    width: 90%;
    margin-top: 40px;
}

.professional_seo_serv_small_wrpp .professional_seo_serv_small_wrpp_box {
    background-color: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.35) 9px 6px 15px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    border-radius: 10px;
    position: relative;
}

.professional_seo_serv_small_wrpp .professional_seo_serv_small_wrpp_box img {
    width: 100px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 10px;
}

.professional_seo_serv_small_wrpp .professional_seo_serv_small_wrpp_box span {
    font-size: 18px;
    color: var(--theme);
    font-family: Poppins;
    font-weight: 600;
}

.professional_seo_serv_small_wrpp .professional_seo_serv_small_wrpp_box::after {
    position: absolute;
    content: "";
    background-color: var(--theme);
    width: 0px;
    height: 5px;
    bottom: 0px;
    left: 0px;
    border-radius: 0px 0px 10px 10px;
    transition: all 0.2s ease-in-out 0s;
}

.professional_seo_serv_small_wrpp .professional_seo_serv_small_wrpp_box::before {
    position: absolute;
    content: "";
    background-color: var(--theme);
    height: 0px;
    width: 5px;
    left: 0px;
    top: 0px;
    border-radius: 10px 0px 0px 10px;
    transition: all 0.2s ease-in-out 0.2s;
}

.professional_seo_serv_small_wrpp .professional_seo_serv_small_wrpp_box:hover::before {
    height: 100%;
    transition: all 0.2s ease-in-out 0s;
}

.professional_seo_serv_small_wrpp .professional_seo_serv_small_wrpp_box:hover::after {
    width: 100%;
    transition-delay: 0.2s;
}

.professional_seo_serv_sec .theme-heading>h2 {
    line-height: 1;
}

.seo_serv_pgg .growth_starts_secc.supercharge_secc .grwth_img>img {
    height: 410px;
}

.seo_serv_pgg .growth_starts_secc .grwth_textt {
    height: 410px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.level-slider2 .slick-prev {
    display: none !important;
}

.level-slider2 .slick-next.vertical-next-btn {
    height: 100%;
    width: 85px;
    background: rgb(255, 255, 255);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.level-slider2 {
    padding-right: 70px;
}

.level-slider2 .slick-next.vertical-next-btn::before {
    content: "";
    display: none;
}

button.slick-next.vertical-next-btn span {
    font-size: 15px;
    font-weight: 500;
    display: block;
    color: #fff;
    writing-mode: tb;
    padding-top: 35px;
    transform: rotate(180deg);
}

.level-slider2 .slick-next.vertical-next-btn i {
    position: absolute;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(52, 25, 80);
    bottom: 20px;
    border: 2px solid rgb(52, 25, 80);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-weight: 700;
}

.level-slider2 .slick-slide {
    margin: 0px 8px;
    opacity: 1;
}

.seo_serv_pgg .level-box {
    display: flex;
    align-items: center;
}

.seo_serv_pgg button.slick-next.vertical-next-btn span {
    font-size: 20px;
}

.seo_services_pg_text_sec .theme-heading>h2 {
    line-height: 1.1;
    margin-bottom: 23px;
}

.seo_services_pg_text_sec ul {
    margin-top: 30px;
    margin-bottom: 0;
}

.seo_services_pg_text_sec ul>li {
    color: #000;
    font-size: 21px;
    margin-bottom: 15px;
    padding-left: 23px;
    position: relative;
    font-weight: 500;
}

.seo_services_pg_text_sec ul>li:last-child {
    margin: 0;
}

.seo_services_pg_text_sec ul>li:after {
    position: absolute;
    content: "";
    background: var(--theme);
    width: 10px;
    height: 10px;
    left: 0;
    top: 7px;
    border-radius: 50%;
}

.seo_serv_pgg .secure-web-sec h2 {
    font-size: 40px;
    width: 75%;
    margin: 0 auto;
    margin-bottom: 10px;
    font-weight: 500;
}

.seo_serv_pgg .secure-web-sec .purple-box {
    padding: 50px 40px;
}

.seo_serv_pgg .secure-web-sec p {
    font-size: 22px;
    color: #fff;
    width: 70%;
    margin: 0 auto;
    margin-bottom: 20px;
}

.seo_serv_pgg .secure-web-sec .btn5::after {
    background-color: rgb(255, 188, 71);
}

.seo_serv_pgg .secure-web-sec .btn5 {
    width: fit-content;
    margin: 0 auto;
    height: 50px;
    padding: 0 30px;
}

.seo_audit_secc .seo_audit_wrp>h2 {
    font-size: 40px;
    color: var(--theme);
    font-weight: 600;
}

.seo_audit_secc .seo_audit_wrp p {
    font-size: 21px;
    color: #000;
    font-family: 'Poppins';
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 30px;
}

.seo_audit_secc .seo_audit_wrp img {
    width: 100%;
    height: auto;
}

.seo_audit_secc .seo_audit_wrp ul {
    margin-top: 50px;
}

.seo_audit_secc .seo_audit_wrp ul>li {
    margin-bottom: 20px;
    font-size: 21px;
    color: #000;
    font-weight: 500;
    padding-left: 25px;
    position: relative;
}

.seo_audit_secc .seo_audit_wrp ul>li:after {
    position: absolute;
    content: "";
    background: #000;
    width: 8px;
    height: 8px;
    left: 0;
    top: 6px;
    border-radius: 50%;
}

.seo_serv_pgg .secure-web-sec {
    margin-bottom: 30px;
}

.seo_serv_pgg .nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
    background-color: transparent;
}

.secure_seo_divv ul>li>a {
    font-family: 'Roboto';
    font-size: 16px;
    padding: 0 60px;
    height: 50px;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.content_optimisation_secc .theme-heading ul>li {
    font-size: 20px;
    color: #000;
    font-weight: 500;
    margin-bottom: 13px;
    position: relative;
    padding-left: 20px;
}

.content_optimisation_secc .theme-heading ul>li:last-child {
    margin: 0;
}

.content_optimisation_secc .theme-heading ul>li:after {
    position: absolute;
    content: "";
    background: #000;
    width: 7px;
    height: 7px;
    left: 0;
    border-radius: 50%;
    top: 8px;
}

.content_optimisation_secc .theme-heading ul {
    margin-top: 30px;
}

.digital_realm {
    background-color: var(--theme);
    text-align: center;
    padding: 40px 30px 30px;
    border-radius: 10px;
}

.digital_realm>h2 {
    font-size: 39px;
    color: #fff;
    font-weight: 400;
}

.digital_realm>h2>span {
    font-weight: 600;
    color: #8e54c4;
}

.digital_realm>h2>span:last-child {
    color: #ffbc47;
}

.digital_realm>p {
    font-size: 21px;
    color: #fff;
    line-height: 32px;
    margin-bottom: 30px;
}

.digital_realm>a {
    height: 50px;
    margin-bottom: 10px;
}

.gap_analysis_wrpp {
    border: 1px solid #dddddd;
    padding: 40px 25px;
    border-radius: 10px;
    margin-bottom: 30px;
    height: auto;
}

.gap_analysis_wrpp>div {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.gap_analysis_wrpp>div>span {
    background: #af69ee;
    width: 60px;
    height: 50px;
    border-radius: 5px;
}

.gap_analysis_wrpp>div>h3 {
    font-size: 30px;
    color: var(--theme);
    margin-bottom: 0;
}

.gap_analysis_wrpp>p {
    font-size: 18px;
    color: #000;
    font-family: 'Poppins';
    font-weight: 400;
    line-height: 31px;
    margin-bottom: 0;
}

.gap_analysis_wrpp>div>* {
    width: 100%;
}

.gap_analysis_wrpp.mt-trnn {
    margin-top: -120px;
    height: 570px;
}

.faqs_secc .cust_faqs .accordion-button {
    background-color: #faf4ff;
    font-size: 33px;
    font-family: Poppins;
    font-weight: 500;
    padding: 25px 40px;
    border: 0;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: none;
    transition: 0.2s ease-in-out;
    line-height: 1.2;
}


.cust_faqs .accordion-item {
    border: 0;
}

.accordion-button:focus {
    box-shadow: none;
}

.cust_faqs .accordion-body p {
    font-size: 22px;
    text-align: left;
    line-height: 32px;
    font-weight: 400;
    margin-bottom: 0;
    color: #fff;
}

.cust_faqs .accordion-body {
    padding: 10px 30px 30px;
    background-color: #341950;
    border-radius: 0 0 10px 10px;
    transition: 0.2s ease-in-out;
    margin-bottom: 20px;
}

.cust_faqs .accordion-button:not(.collapsed) {
    background-color: #341950;
    color: #fff;
    margin-bottom: -1px;
    border-radius: 10px 10px 0px 0px;
    border: 0;
    transition: 0.2s ease-in-out;
}

.cust_faqs .accordion-button::after {
    background-image: none;
    content: '\f078';
    font-family: 'Font Awesome 5 Free';
    font-size: 20px;
    position: absolute;
    right: 20px;
    top: 30%;
    color: var(--theme);
    width: 40px;
    height: 40px;
    font-weight: 600;
    border: 1px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.cust_faqs .accordion-button:not(.collapsed)::after {
    background-image: none;
    color: #fff;
}

.gap_analysis_wrpp {
    position: relative;
}

.gap_analysis_wrpp:after {
    position: absolute;
    content: "";
    background-color: var(--theme);
    width: 0px;
    height: 5px;
    bottom: 0px;
    left: 0px;
    border-radius: 0px 0px 10px 10px;
    transition: all 0.2s ease-in-out 0s;
}

.gap_analysis_wrpp:before {
    position: absolute;
    content: "";
    background-color: var(--theme);
    height: 0px;
    width: 5px;
    left: 0px;
    top: 0px;
    border-radius: 10px 0px 0px 10px;
    transition: all 0.2s ease-in-out 0.2s;
}

.gap_analysis_wrpp:hover::before {
    height: 100%;
    transition: all 0.2s ease-in-out 0s;
}

.gap_analysis_wrpp:hover::after {
    width: 100%;
    transition-delay: 0.2s;
}

/* seo services page end*/

/* enterprises seo page start */

.enterprises-seo-pgg .banner_text h2 {
    font-size: 50px;
    font-weight: 500;
}

.enterprises-seo-pgg .banner_text h1 {
    margin: 0;
    text-transform: capitalize;
    font-size: 35px;
}

.enterprises-seo-pgg .banner_values::before {
    display: none;
}

.enterprises-seo-pgg .banner_values::after {
    top: 0;
    left: 0;
}

.enterprises-seo-pgg .secure-web-sec h2 {
    font-size: 45px;
    font-weight: 500;
    margin-bottom: 10px;
}

.enterprises-seo-pgg .secure-web-sec p {
    font-size: 22px;
    color: #fff;
    font-family: 'Poppins';
    width: 70%;
    margin: 0 auto;
    margin-bottom: 20px;
    font-weight: 500;
    line-height: 30px;
}

.enterprises-seo-pgg .secure-web-sec .btn5::after {
    background-color: rgb(255, 188, 71);
}

.accelerate_secc .professional_seo_serv_small_wrpp {
    width: 100%;
}

.accelerate_secc .professional_seo_serv_small_wrpp .professional_seo_serv_small_wrpp_box span {
    font-size: 23px;
    font-family: 'Roboto';
    font-weight: 500;
    line-height: 32px;
}

.accelerate_secc .professional_seo_serv_small_wrpp .professional_seo_serv_small_wrpp_box img {
    height: auto;
    width: auto;
    margin-bottom: 20px;
}

.accelerate_secc .professional_seo_serv_small_wrpp .professional_seo_serv_small_wrpp_box {
    padding: 40px 20px;
}

.enterprises_list_wrpp {
    margin: 0;
    margin-top: 40px;
}

.enterprises_list_wrpp>li {
    margin-bottom: 16px;
    font-size: 21px;
    color: #000;
    font-weight: 500;
    position: relative;
    padding-left: 30px;
}

.enterprises_list_wrpp>li:last-child {
    margin: 0;
}

.enterprises_list_wrpp>li:after {
    position: absolute;
    content: "";
    background-color: #af69ee;
    width: 15px;
    height: 15px;
    left: 0;
    top: 5px;
    border-radius: 50%;
}

/* enterprises seo page end */

/* content marketing page start */

.content_marketing_banner_wrpp>img {
    width: 100%;
    height: 510px;
    object-fit: contain;
}

.content-marketing-pgg .banner_text>h2 {
    font-size: 50px;
    font-weight: 600;
}

.content-marketing-pgg .banner_text>form {
    width: 80%;
}

.customized_content .gap_analysis_wrpp>div>h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

.customized_content .gap_analysis_wrpp {
    height: 100%;
    max-height: -webkit-fill-available;
}

.comprehensive_content_marketing {
    background-color: #faf4ff;
}

.comprehensive_content_marketing .theme-heading>h2 {
    font-size: 50px;
    font-weight: 600;
    line-height: 1.1;
}

.comprehensive_content_wrpp {
    position: relative;
}

.comprehensive_content_wrpp ul {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
}

.comprehensive_content_wrpp ul>li>h4 {
    margin: 0;
    color: #000;
    font-size: 30px;
    background: #fff;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.comprehensive_content_wrpp ul>li>span {
    font-size: 20px;
    color: var(--theme);
    font-weight: 600;
}

.comprehensive_content_wrpp ul>li:first-child {
    position: relative;
    background-color: #af69ee;
    padding: 15px;
    border-radius: 50%;
}

.comprehensive_content_wrpp ul>li:first-child:before {
    position: absolute;
    content: "";
    background-color: #af69ee;
    clip-path: polygon(50% 40%, 0 0, 100% 0);
    width: 60px;
    height: 60px;
    left: 20px;
    bottom: -49px;
    z-index: -1;
}

.comprehensive_content_wrpp .row:last-child ul {
    flex-direction: row-reverse;
}

.comprehensive_content_wrpp .row:last-child ul>li:first-child:before {
    clip-path: polygon(52% 52%, 0 100%, 100% 100%);
    bottom: unset;
    top: -50px;
}

.comprehensive_content_wrpp:before {
    position: absolute;
    content: "";
    background-image: url(../images/vec9.png);
    width: 100%;
    height: 40px;
    left: 0;
    top: 42%;
    background-repeat: no-repeat;
    background-size: 100%;
}

.comprehensive_content_wrpp .row:last-child {
    margin-top: 120px;
}

.content-marketing-pgg .growth_starts_secc .grwth_img>img {
    height: 560px;
}

.content-marketing-pgg .growth_starts_secc .grwth_btn>a {
    height: 505px;
}

.why_choose_new_sec h2 {
    font-size: 50px;
    color: var(--theme);
    font-weight: 600;
    margin-bottom: 40px;
}

.why_choose_new_sec .slick-active {
    opacity: 1;
}

.why_choose_new_sec .gap_analysis_wrpp>div>h3 {
    font-size: 22px;
}

.why_choose_new_sec .gap_analysis_wrpp {
    padding: 20px 15px;
    margin: 0;
}

.why_choose_new_sec.logos_sec .slick-prev {
    left: unset;
    right: -40px;
    top: 55%;
}

.why_choose_new_sec.logos_sec .slick-next {
    top: 40%;
    right: -40px;
}

.why_choose_new_sec.logos_sec .slick-track {
    display: flex;
    align-items: stretch;
}

.why_choose_new_sec.logos_sec .slick-track .slick-slide {
    height: auto;
}

.why_choose_new_sec.logos_sec .slick-track .slick-slide .gap_analysis_wrpp {
    height: 100% !IMPORTANT;
}

.strip_sec_new {
    background-color: var(--theme);
    padding: 30px 0px;
}

.strip_sec_new h3 {
    font-size: 45px;
    color: #fff;
    text-align: center;
    font-weight: 500;
    margin-bottom: 10px;
}

.strip_sec_new p {
    font-size: 22px;
    color: #fff;
    text-align: center;
    font-family: 'Poppins';
    font-weight: 400;
}

.strip_sec_new ul {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    margin-top: 30px;
    gap: 20px;
}

.strip_sec_new ul>li>a {
    padding: 0 40px;
    height: 50px;
    align-items: center;
    display: flex;
}

.new_edit_pgg>p {
    font-size: 22px;
    color: #000;
    font-weight: 400;
    text-align: center;
}

.new_edit_pgg>ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.new_edit_pgg>ul>li>a {
    padding: 0 50px;
    height: 50px;
    align-items: center;
    display: flex;
}

.skyrocket_textt_wrp>h2 {
    font-size: 46px;
    color: var(--theme);
    font-weight: 600;
}

.skyrocket_textt_wrp>p {
    font-size: 21px;
    color: #000;
    font-family: 'Poppins';
    font-weight: 500;
    line-height: 30px;
    margin-bottom: 20px;
}

.skyrocket_textt_wrp>ul {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 0;
    margin-top: 40px;
}

.skyrocket_textt_wrp>ul>li:first-child>.theme_btn::after {
    background-color: #341950;
}

.skyrocket_right_side {
    background: var(--theme);
    padding: 15px;
    border-radius: 10px;
}

.skyrocket_right_side>img {
    border-radius: 10px;
    margin-bottom: 20px;
}

.skyrocket_right_side>h4 {
    text-align: center;
    color: #fff;
    font-size: 31px;
}

.skyrocket_right_side>p {
    font-size: 20px;
    color: #fff;
    text-align: center;
    font-family: 'Poppins';
    line-height: 28px;
    margin-bottom: 30px;
}

.skyrocket_right_side>a {
    width: 90%;
    height: 50px;
    margin-bottom: 13px !important;
    margin: 0 auto;
}

.level-slider_new .slick-prev {
    display: none !important;
}

.level-slider_new .slick-next.vertical-next-btn {
    height: 560px;
    width: 85px;
    background: var(--theme);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -8px;
}

.level-slider_new {
    padding-right: 70px !important;
    margin-top: 50px;
}

.level-slider_new .slick-next.vertical-next-btn::before {
    content: "";
    display: none;
}

.level-slider_new button.slick-next.vertical-next-btn span {
    font-size: 20px;
    font-weight: 500;
    display: block;
    color: #fff;
    writing-mode: tb;
    padding-top: 35px;
    transform: rotate(180deg);
}

.level-slider_new .slick-next.vertical-next-btn i {
    position: absolute;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    bottom: 20px;
    border: 2px solid #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-weight: 700;
}

.level-slider_new .grwth_textt {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    margin-bottom: 20px;
}

/* content marketing page end */

/* gmb setup page start */

.gmb-setup-banner-image>img {
    width: 100%;
}

.gmb-setup-serv-pgg .home-banner .gmb-setup-banner-image {
    position: absolute;
    top: 5px;
    width: 50%;
    right: -7%;
}

.gmb-setup-serv-pgg .banner_text h2 {
    font-size: 57px;
    font-weight: 500;
}

.gmb-setup-serv-pgg .gap_analysis_wrpp>span {
    font-size: 47px;
    font-weight: 600;
    color: var(--theme);
    margin-bottom: 30px;
    display: block;
}

.gmb-setup-serv-pgg .customized_content .gap_analysis_wrpp>div>h3 {
    font-size: 19px;
    margin-bottom: 0;
}

.new_strip_form {
    width: 90%;
    margin: 0 auto;
    background-color: var(--theme);
    padding: 30px 80px;
    border-radius: 10px;
    text-align: center;
}

.new_strip_form h3 {
    font-size: 45px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 10px;
}

.new_strip_form p {
    font-size: 22px;
    color: #fff;
    font-family: 'Poppins';
    width: 60%;
    margin: 0 auto;
    margin-bottom: 10px;
}

.new_strip_form form input {
    width: 100%;
    height: 50px;
    border: 0;
    padding: 15px;
    background-color: #e6e6e6;
    color: #000;
    border-radius: 6px;
}

.new_strip_form form button {
    width: 100%;
    border: 0;
    height: 50px;
}

.new_strip_form form {
    margin-top: 20px;
}

.create-google-busines-sec .new_strip_form {
    width: 100%;
    border-radius: 0;
}

/* gmb setup page end */

/* email marketing page */

.email-marketing-pgg .banner_text h2 {
    font-size: 42px;
    font-weight: 600;
}

.email-marketing-pgg .banner_text h3 {
    font-size: 17px;
    color: #fff;
    margin-top: 40px;
    margin-bottom: 30px;
}

.email-marketing-pgg .banner_text>ul {
    display: flex;
    align-items: center;
    gap: 10px;
}

.email-marketing-pgg .banner_text>ul>li {
    width: 100%;
}

.email-marketing-pgg .banner_text>ul>li>a {
    height: 50px;
}

.email-marketing-pgg .banner_text>ul>li>a.btn5:after {
    background-color: #fff;
}

.loyal_community_secc .theme-heading>h2 {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
}

.loyal_community_secc .loyal_community_boxx p {
    font-size: 20px;
    color: rgb(0, 0, 0);
    font-family: Poppins;
    font-weight: 500;
    line-height: 1.5;
    margin-top: 10px;
}


.loyal_community_secc .loyal_community_boxx ul {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 0;
}

.loyal_community_secc .loyal_community_boxx ul li {
    width: 40%;
}

.loyal_community_secc .loyal_community_boxx ul li a {
    height: 50px;
}

.loyal_community_boxx_sml {
    background-color: var(--theme);
    text-align: center;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 60px 20px;
    border-radius: 5px;
    position: relative;
    z-index: 1;
}

.loyal_community_boxx_sml>h3 {
    color: #fff !important;
    font-size: 35px !IMPORTANT;
    font-weight: 500;
    margin-bottom: 0;
}

.loyal_community_boxx_sml>h3>span {
    color: #ffbc47;
}

.loyal_community_boxx_sml>p {
    color: #fff !important;
}

.loyal_community_boxx_sml:after {
    position: absolute;
    content: "";
    background-image: url(../images/vec10.png);
    width: 40%;
    height: 20%;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    z-index: -1;
}

.hire_branding_mate_new_sec {
    background-color: #faf4ff;
}

.hire_branding_mate_new_sec .theme-heading>h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.hire_branding_mate_new_sec .theme-heading>p {
    font-size: 20px;
    margin-bottom: 20px;
}

.hire_branding_mate_new_sec .theme-heading>ul {
    gap: 20px;
    margin-bottom: 0;
    margin-top: 40px;
}

.hire_branding_mate_new_sec .theme-heading>ul>li {
    width: 30%;
}

.hire_branding_mate_new_sec .theme-heading>ul>li>a {
    height: 50px;
}

.loyal_community_secc .loyal_community_boxx h3 {
    font-size: 40px;
    color: var(--theme);
}

.email-marketing-pgg .improve_your_rankings_sec h2 {
    font-size: 40px;
    width: 90%;
    margin: 0;
    margin-bottom: 20px;
}

.email-marketing-pgg .improve_your_rankings_sec {
    background-color: #faf4ff;
}

.email-marketing-pgg .improve_your_rankings_sec p {
    font-size: 20px;
    line-height: 1.4;
}

.email-marketing-pgg .rank_box_wrpp p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 0;
}

.email-marketing-pgg .rank_box_wrpp {
    height: 100%;
}

.email-marketing-pgg .improve_rank_slider .slick-list .slick-slide {
    float: none;
    height: auto;
}

.email-marketing-pgg .improve_rank_slider .slick-list .slick-track {
    display: flex;
    align-items: stretch;
}

.b2c_email_marketing_wrpp {
    background-color: #f6f6f6;
    padding: 30px 30px;
    border-radius: 9px;
}

.b2c_email_marketing_wrpp>h4 {
    font-size: 31px;
    color: var(--theme);
    font-weight: 600;
    margin-bottom: 20px;
}

.b2c_email_marketing_wrpp>p {
    font-size: 20px;
    color: #000;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 0;
}

.b2c_email_marketing_wrpp>ul {
    margin-bottom: 0;
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
}

.b2c_email_marketing_wrpp>ul>li {
    background-color: #af69ee;
    width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    padding: 0 15px;
    line-height: 1.2;
}

.b2c_email_marketing_slider .slick-prev {
    display: none !important;
}

.b2c_email_marketing_slider .slick-next.vertical-next-btn {
    height: 100%;
    width: 85px;
    background: var(--theme);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.b2c_email_marketing_slider {
    padding-right: 70px;
}

.b2c_email_marketing_slider .slick-next.vertical-next-btn::before {
    content: "";
    display: none;
}

.b2c_email_marketing_slider button.slick-next.vertical-next-btn span {
    font-size: 17px;
    font-weight: 500;
    display: block;
    color: #fff;
    writing-mode: tb;
    padding-top: 35px;
    transform: rotate(180deg);
}

.b2c_email_marketing_slider .slick-next.vertical-next-btn i {
    position: absolute;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    bottom: 20px;
    border: 2px solid #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-weight: 700;
}

.capture-More-leads-secc .theme-heading>h2 {
    font-size: 50px;
}

.capture-More-leads-wrpp {
    background-color: var(--theme);
    text-align: center;
    padding: 40px 30px;
    margin: 50px 0px;
    border-radius: 20px;
}

.capture-More-leads-wrpp>h3 {
    font-size: 34px;
    color: #fff;
    width: 85%;
    margin: 0 auto;
    margin-bottom: 30px;
    font-weight: 500;
}

.capture-More-leads-wrpp>h3>span {
    color: #ffbc47;
}

.capture-More-leads-wrpp>ul {
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 0;
}

.capture-More-leads-wrpp>ul>li {
    width: 25%;
}

.capture-More-leads-wrpp>ul>li>a {
    height: 50px;
}

.capture-More-leads-wrpp-textt>p {
    font-size: 20px;
    color: #000;
    font-weight: 500;
    font-family: 'Poppins';
    line-height: 1.5;
}

.capture-More-leads-wrpp-textt>h4 {
    font-size: 30px;
    color: var(--theme);
    font-weight: 600;
    margin: 20px 0px;
}

.capture-More-leads-wrpp-textt>ul {
    margin: 0;
}

.capture-More-leads-wrpp-textt>.list_grpp {
    margin-bottom: 20px;
}

.capture-More-leads-wrpp-textt>.list_grpp>li {
    position: relative;
    padding-left: 25px;
    font-size: 20px;
    color: #000;
    font-weight: 500;
    margin-bottom: 15px;
}

.capture-More-leads-wrpp-textt>.list_grpp>li:after {
    position: absolute;
    content: "";
    background: #ffbc47;
    width: 10px;
    height: 10px;
    left: 0;
    top: 10px;
    border-radius: 50px;
}

.capture-More-leads-wrpp-textt>ul.d-flex>li {
    width: 30%;
}

.capture-More-leads-wrpp-textt>ul.d-flex {
    gap: 20px;
    margin-top: 30px;
}

.capture-More-leads-wrpp-textt>ul.d-flex>li:first-child>a:after {
    background-color: #341950;
}

.email-marketing-agency-secc .theme-heading>h2 {
    width: 80%;
    font-size: 43px;
    margin: auto;
    margin-bottom: 20px;
}

.email-marketing-agency_wrpp {
    margin-top: 30px;
    text-align: center;
    background-color: #fafafa;
    border: 1px solid #aeaeae;
    padding: 40px 30px;
    position: relative;
    border-radius: 10px;
    transition: 0.3s ease-in-out;
}

.email-marketing-agency_wrpp>img {
    width: 110px;
    display: block;
    margin: 0 auto;
    margin-bottom: 20px;
    height: 110px;
    object-fit: contain;
}

.email-marketing-agency_wrpp span {
    font-size: 20px;
    color: var(--theme);
    font-weight: 600;
}

.email-marketing-agency_wrpp .email-marketing-agency_wrpp_inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0;
    background-color: #fafafa;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: 0.3s ease-in-out;
    opacity: 0;
    z-index: -1;
    transform: translate(0px, -110px);
    /* border: 1px solid #aeaeae; */
}

.email-marketing-agency_wrpp .email-marketing-agency_wrpp_inner p {
    font-size: 16px;
    font-family: 'Poppins';
    color: #000;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 0 !important;
    margin-top: 11px !important;
    width: 90%;
    margin: 0 auto;
}

.email-marketing-agency_wrpp:hover .email-marketing-agency_wrpp_inner {
    opacity: 1;
    z-index: 1;
    transform: translate(0px, 0px);
}

/* email marketing page */

/* influencer marketing page */

.influencer-marketing-pgg .banner_text>h2 {
    font-size: 49px;
    font-weight: 600;
}

.influencer-marketing-pgg .banner_text>form {
    width: 80%;
}

.best_agency_content>h2 {
    font-size: 37px;
    color: var(--theme);
    font-weight: 600;
    margin-bottom: 30px;
}

.best_agency_content>p {
    font-size: 20px;
    color: #000;
    font-family: 'Poppins';
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 30px;
}

.ageny_wrpp {
    position: relative;
}

.ageny_wrpp>.ageny_img_wrpp {
    display: flex;
    align-items: center;
    justify-content: end;
}

.ageny_wrpp .ageny_text_wrpp {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 90%;
    margin: 0 auto;
    right: 0;
}

.ageny_wrpp .ageny_text_wrpp>h3 {
    font-size: 22px;
    color: #fff;
    text-align: center;
    margin-bottom: 13px;
}

.influencer-slider-one .slick-slide {
    margin: 0;
    opacity: 1;
}

.influencer-marketing-pgg .why_choose_new_sec h2 {
    margin-bottom: 10px;
}

.influencer-marketing-pgg .why_choose_new_sec p {
    font-size: 20px;
    color: #000;
    font-weight: 400;
    font-family: 'Poppins';
    line-height: 1.4;
}

.influencer-marketing-pgg .gap_analysis_wrpp>p {
    font-size: 16px !important;
    line-height: 1.5;
    font-family: 'Roboto';
}

.influencer-slider-two .slick-slide {
    opacity: 1;
    margin: 0;
}

.influencer-marketing-pgg .loyal_community_boxx_sml>p {
    font-size: 20px;
    font-family: 'Poppins';
    font-weight: 400;
    margin-bottom: 0;
    margin-top: 20px;
}

.influencer-marketing-pgg .contact_imgg>img {
    height: 754px;
}

/* influencer marketing page */

/* sms marketing page */

.sms-marketing-pgg .banner_text>h2 {
    font-size: 57px;
    font-weight: 600;
}

.sms-marketing-banner-img>img {
    width: 100%;
    position: relative;
    bottom: -90px;
}

.sms-marketing-pgg .our_customer_grow p {
    font-size: 24px;
    color: #000;
    font-family: Poppins;
    font-weight: 500;
    line-height: 1.5;
}

.sms-marketing-pgg section.secure-web-sec {
    width: 80%;
    margin: 0 auto;
}

.sms-marketing-pgg .secure-web-sec h2 {
    font-size: 45px;
    font-weight: 500;
    line-height: 1.1;
}

.sms-marketing-pgg .secure-web-sec .btn5::after {
    background-color: #ffbc47;
}

.sms-marketing-pgg .web-sol-tab-sec .nav-tabs .nav-link.active::before {
    display: none;
}

.sms-marketing-pgg .web-sol-tab-sec .nav-tabs .nav-link.active {
    padding-left: 0;
}

.sms-marketing-pgg .nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
    background-color: transparent;
}

.sms-marketing-pgg ul.d-flex.frst-btnns>li:after {
    display: none;
}

.sms-marketing-pgg ul.d-flex.frst-btnns>li {
    padding: 0;
    width: 30% !important;
    max-width: -webkit-fill-available;
}

.sms-marketing-pgg ul.d-flex.frst-btnns {
    gap: 10px;
    margin-bottom: 0;
    margin-top: 40px;
}

.sms-marketing-pgg ul.d-flex.frst-btnns>li>a {
    height: 50px;
    align-items: center;
    justify-content: center;
    display: flex;
}

.sms-marketing-pgg .contact_imgg>img {
    height: 754px;
}

/* sms marketing page */

/* ppc management page */

.ppc-management-pgg .banner_text>h1 {
    font-size: 51px;
    text-transform: capitalize;
    font-weight: 600;
}

.ppc-management-pgg .banner_text>form {
    width: 80%;
}

.ppc-manage-banner-img>img {
    width: 100%;
}

.ppc-management-pgg .home-banner:before {
    position: absolute;
    content: "";
    background-image: url(../images/vec11.png);
    width: 240px;
    height: 240px;
    right: 0;
    top: 10%;
    background-repeat: no-repeat;
}

.x2yourlead-secc ul>li>a {
    height: 50px;
    justify-content: center;
    align-items: center;
    display: flex;
}

.ppc-management-pgg .nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
    background: transparent;
    padding-left: 0;
}

.ppc-management-pgg .web-sol-tab-sec .nav-tabs .nav-link.active::before {
    display: none;
}

.ppc-management-pgg .rank_box_wrpp>img {
    height: 150px !important;
    width: 150px !IMPORTANT;
}

.ppc-management-pgg .rank_box_wrpp {
    border: 1px solid #d7d7d7;
    box-shadow: none;
}

.ppc-management-pgg .rank_box_wrpp:hover {
    box-shadow: rgba(0, 0, 0, 0.35) 7px 5px 17px;
}

.ppc-management-pgg .growth_starts_secc.supercharge_secc .grwth_img>img {
    height: 400px;
}

.benefits-of-branding-secc {
    background: var(--theme);
}

.benefits-of-branding-secc .theme-heading {
    width: 90%;
    margin: 0 auto;
}

.benefits-of-br-wrpp {
    background: #fafafa;
    text-align: center;
    padding: 30px 10px;
    border-radius: 5px;
    transition: 0.3s ease-in-out;
}

.benefits-of-br-wrpp>img {
    width: 110px;
    height: 110px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    margin-bottom: 20px;
}

.benefits-of-br-wrpp>span {
    font-size: 20px;
    font-weight: 600;
    color: var(--theme);
}

.benefits-of-br-wrpp:hover {
    transition: 0.3s ease-in-out;
    transform: scale(.9);
}

.not-happy-form-secc {
    background-color: #f6ebff;
}

.not-happy-form-secc h2 {
    font-size: 42px;
    color: var(--theme);
    text-align: center;
    width: 90%;
    margin: 0 auto;
    margin-bottom: 20px;
}

.not-happy-form-secc p {
    text-align: center;
    font-size: 25px;
    font-weight: 500;
    font-family: Poppins, sans-serif;
    color: #000;
    width: 80%;
    margin: 0 auto;
    margin-bottom: 30px;
}

.not-happy-form-secc form input {
    width: 100%;
    height: 50px;
    border: 0;
    background-color: #e6e6e6;
    padding: 15px;
    border-radius: 5px;
}

.not-happy-form-secc form button {
    height: 50px;
    border: 0;
}

.not-happy-form-secc form input::placeholder {
    color: #000;
}

.cust_faqs .accordion-body>ul {
    text-align: left;
    margin-bottom: 0;
    margin-top: 20px;
}

.cust_faqs .accordion-body>ul>li {
    color: #fff;
    font-size: 19px;
    padding-left: 20px;
    margin-bottom: 10px;
    font-weight: 300;
    font-family: 'Roboto';
    position: relative;
}

.cust_faqs .accordion-body>ul>li:last-child {
    margin: 0;
}

.cust_faqs .accordion-body>ul>li:after {
    position: absolute;
    content: "";
    background-color: #fff;
    width: 10px;
    height: 10px;
    left: 0;
    top: 7px;
    border-radius: 50%;
}

[data-pie-index='2'] {
    position: relative;
    border-radius: 50%;
    box-shadow: inset 0 0 25px 10px #a2caff;
}

.card {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 5px;
    background: transparent;
    border: 0;
}

.card .percent {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card svg {
    position: relative;
    width: 250px;
    height: 250px;
    transform: scale(1.2);
}

.card svg circle {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: #c8c8c8;
    stroke-width: 10;
    stroke-linecap: round;
}

.card svg circle:last-of-type {
    stroke-dasharray: 665px;
    stroke-dashoffset: calc(625px - (615px * var(--percent)) / 100);
    stroke: #3498db;
}

.card .number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-61%, -62%);
    background-color: #f6ebff;
    border-radius: 50%;
    width: 57%;
    height: 85%;
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.card .number h3 {
    font-weight: 200;
    font-size: 3.5rem;
}

.card .number h3 span {
    font-size: 2rem;
}

.card .title h2 {
    margin: 25px 0 0;
}

.card:nth-child(1) svg circle:last-of-type {
    stroke: #f39c12;
}

.card:nth-child(2) svg circle:last-of-type {
    stroke: #16a431;
}

.budged-calculator-wrrp .row>.col-md-8>h2 {
    font-size: 45px;
    color: var(--theme);
    font-weight: 600;
}

.ppc-budget-calculator-secc {
    background-color: #faf4ff;
    padding: 20px 0px;
    position: relative;
    z-index: 1;
}

.budged-calculator-wrrp form label {
    font-size: 15px;
    font-family: Roboto, sans-serif;
    color: #000;
    font-weight: 400;
    display: block;
}

.budged-calculator-wrrp .row>.col-md-8>span {
    font-size: 15px;
    color: #000;
    font-family: 'Roboto';
}

.budged-calculator-wrrp .radio-inputs {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    border-radius: 0.5rem;
    box-sizing: border-box;
    padding: 0.25rem;
    font-size: 14px;
    gap: 10px;
    margin-bottom: 20px;
}

.budged-calculator-wrrp .radio-inputs .radio {
    flex: 1 1 auto;
    text-align: center;
    border: 1px solid #cacaca;
    border-radius: 5px;
    background-color: #fff;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.budged-calculator-wrrp .radio-inputs .radio input {
    display: none;
}

.budged-calculator-wrrp .radio-inputs .radio .name {
    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    border: none;
    color: #000;
    transition: all .15s ease-in-out;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    font-family: 'Poppins';
    font-size: 17px;
}

.budged-calculator-wrrp .radio-inputs .radio input:checked+.name {
    background-color: var(--theme);
    color: #fff;
}

.budged-calculator-wrrp .form-select {
    height: 60px;
    font-size: 16px;
    color: #000;
    font-family: 'Roboto';
    border: 1px solid #cacaca;
}

.range-value-wrp input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    cursor: pointer;
    outline: none;
    overflow: hidden;
    border-radius: 0 0 0 5px;
    height: 10px;
}

.range-value-wrp input[type="range"]::-webkit-slider-runnable-track {
    height: 10px;
    background: #e5c8ff;
    border-radius: 5px 0px 0 0px;
}

.range-value-wrp input[type="range"]::-moz-range-track {
    height: 10px;
    background: #ccc;
    border-radius: 5px;
}

.range-value-wrp input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    height: 10px;
    width: 10px;
    background-color: #ffbd39;
    border-radius: 50%;
    border: 2px solid #341950;
    box-shadow: -407px 0 0 400px #341950;
}

.range-value-wrp input[type="range"]::-moz-range-thumb {
    height: 10px;
    width: 10px;
    background-color: #ffbd39;
    border-radius: 50%;
    border: 2px solid #341950;
    box-shadow: -407px 0 0 400px #341950;
}

.range-value-wrp>div {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    height: 70px;
    justify-content: space-between;
    padding-top: 20px;
    margin-top: 6px;
    border: 1px solid #cacaca;
    border-radius: 5px;
}

.range-value-wrp {
    margin-top: 30px;
    margin-bottom: 20px;
}

.range-value-wrp>div>.price,
.hours {
    padding-left: 20px;
    font-size: 21px;
    color: #000;
    font-family: Roboto, sans-serif;
    font-weight: 600;
}

.budged-calculator-wrrp ul {
    margin-bottom: 0;
    display: flex;
}

.budged-calculator-wrrp ul {
    display: flex;
    margin-bottom: 0;
    margin-top: 30px;
    gap: 20px;
}

.budged-calculator-wrrp ul>li>p {
    margin-bottom: 0;
    border: 1px solid #cacaca;
    background-color: #ffff;
    width: 100%;
    margin-top: 7px;
    height: 60px;
    display: flex;
    align-items: center;
    padding: 0px 15px;
    border-radius: 5px;
    position: relative;
    font-size: 15px;
    color: #000;
    font-weight: 600;
}

.budged-calculator-wrrp ul>li {
    width: 100%;
}

.budged-calculator-wrrp ul>li>p:after {
    position: absolute;
    content: "";
    background: #959595;
    width: 90%;
    height: 1px;
    left: 0;
    bottom: 11px;
    right: 0;
    margin: 0 auto;
}

.ppc-budget-calculator-secc:after {
    position: absolute;
    content: "";
    width: 35%;
    height: 100%;
    background-color: #ecd4ff;
    top: 0;
    right: 0;
    z-index: -1;
    max-width: -webkit-fill-available;
}

.budged-calculator-wrrp .col-md-4 {
    padding-left: 3vw;
}

.card .number>span {
    font-size: 35px;
    color: var(--theme);
    font-weight: 500;
}

.card .number>h3 {
    font-size: 36px;
    margin-bottom: 0;
    font-weight: 600;
    color: var(--theme);
}

.budged-calculator-wrrp .col-md-4>h3 {
    font-size: 31px;
    color: var(--theme);
    text-align: center;
    margin-bottom: 50px;
}

.card .number>span {
    font-size: 35px;
    color: var(--theme);
    font-weight: 500;
}

.card .number>h3 {
    font-size: 36px;
    margin-bottom: 0;
    font-weight: 600;
    color: var(--theme);
}

.budged-calculator-wrrp .col-md-4>h3 {
    font-size: 31px;
    color: var(--theme);
    text-align: center;
    margin-bottom: 50px;
}

.side-br_roas-wrpp {
    padding-left: 10%;
    margin-top: 8%;
}

.side-br_roas-wrpp>span {
    font-size: 15px;
    color: #000;
    font-family: Roboto, sans-serif;
    margin-bottom: 10px;
    display: block;
}

.side-br_roas-wrpp>h4 {
    font-size: 34px;
    color: var(--theme);
    font-weight: 700;
    font-family: Roboto, sans-serif;
    border-bottom: 1px solid #959595;
    padding-bottom: 10px;
}

/* ppc management page */

/* youtube marketing */

.youtube-marketing-pgg .banner_text>h1 {
    font-size: 42px;
    text-transform: capitalize;
}

.youtube-marketing-pgg .banner_text>h1>span {
    display: block;
    font-size: 57px;
    font-weight: 600;
}

.youtube-marketing-pgg .banner_text>ul>li {
    font-size: 20px;
    color: #fff;
    font-weight: 300;
    margin-bottom: 16px;
    padding-left: 25px;
    position: relative;
}

.youtube-marketing-pgg .banner_text>ul>li:after {
    position: absolute;
    content: "";
    background: #ffbc47;
    width: 10px;
    height: 10px;
    left: 0;
    top: 7px;
    border-radius: 50%;
}

.youtube-marketing-pgg .banner_text>ul {
    margin: 30px 0 30px;
}

.youtube-banner {
    position: relative;
}

.youtube-banner>img {
    width: 100%;
    height: auto;
}

.youtube-banner>span {
    background: red;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: block;
    position: absolute;
    left: 22.9%;
    top: 6.6%;
    -webkit-animation: 2s cubic-bezier(.25, 0, 0, 1) 3s infinite pulse;
    animation: 2s cubic-bezier(.25, 0, 0, 1) 3s infinite pulse;
    box-shadow: 0 0 0 2px red;
}

@-webkit-keyframes pulse {
    to {
        box-shadow: 0 0 0 18px rgba(255, 255, 255, 0)
    }
}

@keyframes pulse {
    to {
        box-shadow: 0 0 0 18px rgba(255, 255, 255, 0);
    }
}

body.youtube-marketing-pgg .improve_your_rankings_sec p {
    font-size: 17px;
    line-height: 1.5;
    margin: 0;
}

.youtube-marketing-pgg .rank_box_wrpp>span {
    font-size: 22px;
    line-height: 1.2;
}

.youtube-marketing-pgg .improve_your_rankings_sec .slick-next {
    top: 50%;
}

.youtube-marketing-pgg .improve_rank_slider .slick-list {
    padding-right: 5%;
}

.youtube-marketing-pgg .improve_your_rankings_sec .slick-slide {
    height: auto;
}

.youtube-marketing-pgg .improve_rank_slider .slick-track {
    display: flex;
    align-items: stretch;
}

.youtube-marketing-pgg .nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
    background: transparent;
}

.youtube-marketing-pgg .capture-More-leads-wrpp>ul>li {
    width: fit-content;
}

.youtube-marketing-pgg .capture-More-leads-wrpp>ul>li>a {
    padding: 0px 30px;
    justify-content: center;
    align-items: center;
    display: flex;
}

.youtube-marketing-pgg .growth_starts_secc .grwth_textt>h3 {
    font-size: 22px;
}

.youtube-marketing-pgg .growth_starts_secc.supercharge_secc .grwth_img>img {
    height: 440px;
}

.youtube-marketing-pgg .our_customer_grow p {
    font-size: 24px;
    color: #000;
    font-weight: 400;
    line-height: 1.5;
}

.youtube-marketing-pgg .our_customer_grow ul li {
    padding: 0;
}

.youtube-marketing-pgg .our_customer_grow ul li:after {
    display: none;
}

.youtube-marketing-pgg .our_customer_grow ul li>a {
    padding: 14px 30px;
}

.youtube-marketing-pgg .our_customer_grow ul {
    gap: 10px;
    margin-bottom: 0;
    margin-top: 9%;
}

.lightcamera-slider span>img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    border-radius: 10px;
}

.lightcamera-slider .lightcamera-textt-wrpp {
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    display: flex;
    flex-direction: column;
    padding: 40px 30px;
    border-radius: 10px;
    justify-content: space-between;
    height: 540px;
}

.lightcamera-secc h2 {
    font-size: 50px;
    color: var(--theme);
    text-align: center;
    margin-bottom: 5%;
}

.lightcamera-secc h2>span {
    font-size: 35px;
    display: block;
}

.lightcamera-slider .lightcamera-textt-wrpp h4 {
    font-size: 30px;
    font-weight: 600;
    color: var(--theme);
}

.lightcamera-slider .lightcamera-textt-wrpp span {
    font-size: 25px;
    color: var(--theme);
    font-weight: 600;
    margin-bottom: 10px;
}

.lightcamera-slider .lightcamera-textt-wrpp p {
    font-size: 22px;
    color: #000;
    font-weight: 400;
    line-height: 1.3;
}

.lightcamera-secc .slick-prev:before {
    display: none;
}

.lightcamera-secc .slick-next:before {
    display: none;
}

.lightcamera-slider vertical-next-btn {
    height: 100%;
    width: 85px;
    background: rgb(255, 255, 255);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightcamera-slider .vertical-next-btn>span {
    font-size: 25px;
    font-weight: 600;
    display: block;
    color: rgb(52, 25, 80);
    writing-mode: tb;
    padding-top: 35px;
    transform: rotate(180deg);
    ;
}

.lightcamera-slider .vertical-next-btn {
    height: 540px;
    width: 85px;
    background: #af69ee;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightcamera-slider button.slick-next.vertical-next-btn i {
    position: absolute;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    bottom: 20px;
    border: 2px solid #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-weight: 700;
}

.lightcamera-slider {
    padding-right: 70px;
}

.lightcamera-slider .slick-list {
    padding-bottom: 20px;
    padding-top: 20px;
}

.youtube-marketing-pgg .our_customer_grow ul li {
    max-width: 100%;
}

.youtube-marketing-pgg .start_your_journey_sec .bottom_counter_wrpp {
    gap: 0;
}

.youtube-marketing-pgg .contact_imgg>img {
    height: 755px;
}

/* youtube marketing */

/* wordpress web development */

.wordpress-web-development-pgg .banner_text>h1 {
    font-size: 42px;
    font-weight: 600;
    text-transform: capitalize;
}

.wordpress-web-development-pgg .banner_text>h1>span {
    font-size: 57px;
    display: block;
    font-weight: 600;
}

.wordpres-web-banner>img {
    width: 100%;
}

.wordpress-web-development-pgg .contact_imgg>img {
    height: 755px;
}

.wordpres-web-design-secc .theme-heading>h2 {
    font-size: 45px;
    margin-bottom: 5%;
}

.wordpres-web-design-secc .wordpres-box-sml {
    position: relative;
    background: #fff;
    box-shadow: rgb(0 0 0 / 16%) 7px 7px 10px;
    height: 100%;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
}

.wordpres-web-design-secc .wordpres-box-sml>img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px !IMPORTANT;
    display: block;
    margin: 0 auto;
}

.wordpres-web-design-secc .wordpres-box-sml>h3 {
    font-size: 22px;
    color: var(--theme);
    margin: 0;
}

.wordpres-web-design-secc .wordpres-box-sml:after {
    position: absolute;
    content: "";
    background: var(--theme);
    width: 5px;
    height: 0;
    left: 0;
    top: 0;
    border-radius: 10px 0 0 10px;
    transition: 0.2s ease-in-out;
    transition-delay: .2s;
}

.wordpres-web-design-secc .wordpres-box-sml:before {
    position: absolute;
    content: "";
    background: var(--theme);
    width: 0;
    height: 5px;
    left: 0;
    bottom: 0;
    border-radius: 0px 0px 10px 0px;
    transition: 0.2s ease-in-out;
}

.wordpres-web-design-secc .wordpres-box-sml:hover:after {
    height: 100%;
    transition-delay: 0s;
}

.wordpres-web-design-secc .wordpres-box-sml:hover:before {
    width: 100%;
    transition-delay: 0.2s;
}

.wordpress-web-development-pgg .agency_tabss_content>p {
    font-size: 17px;
}

.wordpress-web-development-pgg .nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
    background: transparent;
}

.wordpress-web-development-pgg .loyal_community_boxx_sml>p {
    font-size: 21px;
    font-weight: 500;
    margin: 10px 0px;
}

.wordpress-web-development-pgg .capture-More-leads-wrpp>h3 {
    font-size: 45px;
}

.wordpress-web-development-pgg .capture-More-leads-wrpp>ul>li {
    width: auto;
}

.wordpress-web-development-pgg .btn5 {
    padding: 0 30px;
}

.wordpress-web-development-pgg .our_customer_sticky>span {
    position: absolute;
    right: -50px;
    top: -10px;
}

.wordpress-web-development-pgg .our_customer_sticky>span>img {
    width: 99%;
}

.wordpress-web-development-pgg .our_customer_grow ul li {
    font-size: 22px;
}

.wordpress-web-development-pgg .our_customer_grow ul li::after {
    background: #ffbc47;
}

.wordpress-web-development-pgg .our_customer_grow p {
    font-size: 22px;
    font-family: 'Poppins';
    color: #000;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 5%;
}

.wordpress-web-development-pgg .cus-tabs {
    display: block;
}

.wordpress-web-development-pgg .portfolio_secc .theme-heading>span {
    font-size: 45px;
    color: var(--theme);
    font-weight: 600;
    text-transform: capitalize;
}

.wordpress-web-development-pgg .portfolio_secc {
    background: #fff;
}

.wordpress-web-development-pgg .portfolio_secc .custom_tabbing_wrpp {
    margin-top: 4%;
}

.wordpress-calculator-sec {
    background: #341950;
    padding: 50px 0px 40px;
}

.wordpress-calculator-sec h2 {
    font-size: 52px;
    font-weight: 600;
    width: 65%;
    margin: 0 auto;
    text-align: center;
    font-family: 'Roboto';
    margin-bottom: 1%;
}

.wordpress-calculator-sec p {
    font-size: 21px;
    color: #fff;
    font-weight: 400;
    text-align: center;
    margin-bottom: 50px;
}

.wordpress-calculator-sec .grp>label {
    font-size: 18px;
    color: #fff;
    display: block;
    margin-bottom: 15px;
    font-family: 'Poppins';
}

.wordpress-calculator-sec .grp>input {
    width: 100%;
    border: 0;
    height: 50px;
    border-radius: 5px;
    margin-bottom: 15px;
    padding: 10px;
}

.wordpress-calculator-sec .grp>select {
    width: 100%;
    height: 50px;
    margin-bottom: 15px;
    color: #000;
    font-weight: 400;
    border: 0;
    padding: 10px;
}

.wordpress-calculator-sec .grp>p {
    background: #fff;
    width: 100%;
    height: 50px;
    border-radius: 5px;
    color: #000;
}

.wp-design-serv-secc h2 {
    color: var(--theme);
    text-align: center;
    font-size: 56px;
    font-weight: 600;
}

.wordpress-web-development-pgg .gap_analysis_wrpp>div>h3 {
    font-size: 22px;
}

.wordpress-web-development-pgg .gap_analysis_wrpp>img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 30px;
}

.wp-design-serv-secc .gap_analysis_wrpp {
    height: 100%;
    max-height: -webkit-fill-available;
}

.wp-design-serv-secc .btn5 {
    width: fit-content;
    margin: 0 auto;
}

.wordpress-web-development-pgg .testimonials_secc .col-lg-12>p {
    text-align: center;
    font-size: 22px;
    font-weight: 400;
    margin: 40px 0 20px;
    color: #000;
}

.wordpress-web-development-pgg .testimonials_secc .col-lg-12>.d-flex {
    gap: 10px;
    justify-content: center;
    margin: 0;
}

.wordpress-web-development-pgg .testimonials_secc .col-lg-12>.d-flex>li>a {
    height: 50px;
}

/* wordpress web development */

.grwth-slider-home {
    padding-right: 70px;
}

.grwth-slider-home .slick-next:before {
    display: none;
}

.grwth-slider-home .slick-prev:before {
    display: none;
}

.grwth-slider-home .vertical-next-btn {
    height: 420px;
    width: 85px;
    background: var(--theme);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.home_pgg .growth_starts_secc .grwth_textt {
    height: 420px;
}

.home_pgg .grwth-slider-home .slick-list {
    padding: 30px 0px;
}

.grwth-slider-home button.slick-next.vertical-next-btn span {
    font-size: 16px;
}

.grwth-slider-home .vertical-next-btn>i {
    color: #fff;
    font-size: 18px;
    width: 40px;
    border: 2px solid;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.home_pgg .we_are_textt_div>p {
    font-size: 15px;
}

.home_pgg .we_are_textt_div>ul>li {
    font-size: 15px;
}

.home_pgg .we_are_textt_div>.pkgg_btn {
    font-size: 14px;
}

.we-are-up-slider .slick-track {
    display: flex;
    align-items: stretch;
}

.we-are-up-slider .slick-track .slick-slide {
    height: auto;
}

.home_pgg .growth_starts_secc.supercharge_secc .grwth_textt {
    height: 500px;
}

.seo_serv_pgg .level-slider2 .slick-next.vertical-next-btn>span {
    color: var(--theme) !IMPORTANT;
}

.local_seo_pgg .grwth_textt {
    height: 470px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ageny_wrpp>.ageny_img_wrpp>img {
    width: 100%;
}

.local_seo_pgg.web-dev_pgg button.slick-next.vertical-next-btn span {
    color: var(--theme) !important;
    font-size: 22px !important;
}

/* logo design page */

.logo-design-pgg .banner_text>h1 {
    font-size: 50px;
    text-transform: capitalize;
    font-family: 'Poppins';
    font-weight: 600;
}

.logo-design-pgg .banner_text>ul>li {
    color: #fff;
    font-size: 20px;
    font-family: 'Roboto';
    font-weight: 300;
    margin-bottom: 14px;
    padding-left: 30px;
    position: relative;
}

.logo-design-pgg .banner_text>ul>li:after {
    position: absolute;
    content: "";
    background-color: #af69ee;
    width: 10px;
    height: 10px;
    left: 0;
    top: 8px;
    border-radius: 50%;
}

.logo-design-pgg .banner_text>ul {
    margin-bottom: 40px;
}

.logo-design-pgg .banner_text>form {
    width: 80%;
}

.logo-design-banner {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.logo-design-banner>img {
    width: 100%;
}

.logo-design-banner:after {
    position: absolute;
    content: "";
    background-image: url(../images/vec8.png);
    width: 80%;
    height: 80%;
    background-size: cover;
    left: -160px;
    bottom: -160px;
    background-repeat: no-repeat;
    z-index: -1;
}

.grwth-slider-logo {
    padding-right: 70px;
}

.grwth-slider-logo .slick-next:before {
    display: none;
}

.grwth-slider-logo .slick-prev:before {
    display: none;
}

.grwth-slider-logo .vertical-next-btn {
    height: 400px;
    width: 85px;
    background: #af69ee;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.grwth-slider-logo button.slick-next.vertical-next-btn span {
    font-size: 19px;
}

.grwth-slider-logo .vertical-next-btn>i {
    color: #fff;
    font-size: 18px;
    width: 40px;
    border: 2px solid;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.logo-design-pgg .growth_starts_secc .grwth_textt>h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

.logo-design-pgg .growth_starts_secc .grwth_textt>span {
    font-size: 21px;
    font-family: 'Roboto';
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
    display: block;
}

.logo-design-pgg .growth_starts_secc .grwth_img>img {
    height: 400px;
}

.logo-design-pgg .growth_starts_secc .grwth_textt {
    height: 400px;
}

.grwth-slider-logo .slick-list {
    padding: 30px 0px;
}

.logo-design-pgg section.secure-web-sec h2 {
    font-size: 45px;
    font-family: 'Roboto';
    font-weight: 500;
    margin-bottom: 14px;
}

.logo-design-pgg section.secure-web-sec p {
    font-size: 22px;
    color: #fff;
    font-family: 'Poppins';
    font-weight: 400;
    margin-bottom: 20px;
}

.logo-design-pgg section.secure-web-sec .btn5::after {
    background: #ffbc47;
}

.logo-design-pgg section.secure-web-sec .btn5 {
    padding: 0 20px;
    height: 50px;
}

.logo-design-pgg .portfolio_secc .theme-heading>h2 {
    font-size: 50px;
}

.logo-design-pgg .cus-tabs a>img {
    height: 290px;
}

.logo-design-pgg .custom_tabbing_wrpp>ul {
    width: 90%;
    margin: 0 auto;
}

.logo-design-pgg .pkgg_btn {
    font-size: 18px;
    color: var(--theme);
    font-weight: 500;
    border-bottom: 1px solid;
    transition: 0.3s ease-in-out;
    padding: 5px 0px;
}

.logo-design-pgg .agency_tabss_content>p {
    font-size: 18px;
    font-family: Roboto, sans-serif;
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 1.4;
}

.logo-design-pgg .loyal_community_boxx_sml>p {
    font-size: 28px;
    font-family: 'Poppins';
}

.logo-design-pgg .improve_your_rankings_sec h2 {
    width: 77%;
}

.logo-design-pgg .contact_imgg>img {
    height: 754px;
}

/* logo design page */

/* ecommerce development */

.ecommerce-web-dev-pgg .banner_text>span {
    font-size: 18px;
    font-family: 'Poppins';
    text-transform: capitalize;
    margin: 0 0 16px 0px;
}

.ecommerce-web-dev-pgg .banner_text>h1 {
    font-size: 50px;
    text-transform: capitalize;
    font-weight: 600;
}

.ecommerce-web-dev-pgg .banner_text>ul>li {
    font-size: 18px;
    color: #fff;
    font-family: 'Roboto';
    font-weight: 300;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

.ecommerce-web-dev-pgg .banner_text>ul>li:after {
    position: absolute;
    content: "";
    background: #fff;
    width: 10px;
    height: 10px;
    left: 0;
    top: 6px;
    border-radius: 50%;
}

.ecommerce-web-dev-pgg .banner_text>ul {
    margin-top: 10px;
}

.ecommerce-banner {
    position: relative;
}

.ecommerce-banner>img {
    width: 80%;
    display: block;
    margin-inline-start: auto;
}

.ecommerce-banner:after {
    position: absolute;
    content: "";
    background-image: url(../images/vec1.png);
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    top: 0;
    right: 0;
}

.ecommerce-web-dev-pgg .professional_seo_serv_sec .theme-heading>h2 {
    font-size: 42px;
    line-height: 1.2;
}

.ecommerce-web-dev-pgg .wordpress-calculator-sec form p {
    background: #fff;
    color: var(--theme);
    width: fit-content;
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 0;
    padding: 10px 60px;
    border-radius: 5px;
    font-weight: 600;
}

.ecommerce-web-dev-pgg .wordpress-calculator-sec h2 {
    width: 100%;
}

.ecommerce-web-dev-pgg .portfolio_secc .theme-heading span {
    font-size: 45px;
    color: var(--theme);
    font-weight: 600;
}

.ecommerce-web-dev-pgg .strip_sec_new h3 {
    font-size: 35px;
}

.ecommerce-web-dev-pgg .strip_sec_new p {
    font-size: 18px;
    font-family: 'Roboto';
    width: 81%;
    margin: 0 auto;
    font-weight: 300;
}

.ecommerce-web-dev-pgg .strip_sec_new ul {
    width: 70%;
    justify-content: space-between;
    margin: 0 auto;
    margin-top: 30px !important;
}

.ecommerce-web-dev-pgg .strip_sec_new ul>li>img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.ecommerce-web-dev-pgg .gap_analysis_wrpp>div {
    margin: 0;
}

.ecommerce-web-dev-pgg .gap_analysis_wrpp>span {
    font-size: 48px;
    display: block;
    margin-bottom: 40px;
    color: #c469f2;
    font-weight: 600;
    transition: 0.2s ease-in-out;
    font-family: 'Poppins';
}

.ecommerce-web-dev-pgg .agency_for_local_seo_sec .theme-heading>h2 {
    font-size: 50px;
}

.ecommerce-web-dev-pgg .agency_for_local_seo_sec .theme-heading>p {
    font-size: 18px;
    font-weight: 400;
}

.ecommerce-web-dev-pgg .agency_tabss_content>h2 {
    font-size: 27px;
}

.ecommerce-web-dev-pgg .agency_tabss_content>p {
    font-size: 18px;
}

.ecommerce-web-dev-pgg .agency_tabss_content>ul>li {
    font-size: 16px;
    margin-bottom: 5px;
}

.ecommerce-web-dev-pgg .nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
    background: transparent;
}

.ecommerce-web-dev-pgg .agency_for_local_seo_sec.all-sec .nav-tabs .nav-link {
    font-size: 15px;
}

.ecommerce-web-dev-pgg .contact_imgg>img {
    height: 755px;
}

/* ecommerce development */

/* cms web development */

.cms-web-development .banner_text>span {
    font-size: 35px;
    text-transform: capitalize;
    font-family: 'Poppins';
    font-weight: 600;
    margin-bottom: 15px;
}

.cms-web-development .banner_text>h1 {
    font-size: 50px;
    text-transform: capitalize;
    font-weight: 700;
}

.cms-web-development .banner_text>ul>li {
    color: #fff;
    font-size: 18px;
    font-family: 'Roboto';
    font-weight: 300;
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
}

.cms-web-development .banner_text>ul>li:after {
    position: absolute;
    content: "";
    background: #af69ee;
    width: 10px;
    height: 10px;
    left: 0;
    top: 6px;
    border-radius: 50%;
}

.cms-web-development .banner_text>ul {
    margin-top: 10px;
}

.cms-web-development .professional_seo_serv_sec .theme-heading>h2 {
    font-size: 53px;
}

.cms-web-development .professional_seo_serv_side_wrp>p {
    font-size: 16px;
    margin-bottom: 6px !IMPORTANT;
}

.cms-new-sec .cms-heading-wrp>h2 {
    font-size: 33px;
    color: var(--theme);
    font-weight: 600;
}

.cms-new-sec p {
    font-size: 20px;
    color: #000;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
}

.cms-new-sec .cms-step-wrpp {
    background: #fafafa;
    height: 400px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 20px;
    border-radius: 5px;
    justify-content: center;
    margin-bottom: 30px;
}

.cms-new-sec .cms-step-wrpp>span {
    font-size: 22px;
    color: var(--theme);
    font-weight: 600;
    font-family: 'Poppins';
}

.cms-new-sec .cms-heading-wrp {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cms-web-development .new_strip_form {
    width: 100%;
    margin: 0;
    border-radius: 0;
}

.cms-web-development .growth_starts_secc .grwth_textt>h3 {
    font-size: 37px;
}

.cms-web-development .growth_starts_secc .grwth_img>img {
    height: 370px;
}

.cms-web-development .growth_starts_secc .grwth_textt {
    height: 370px;
}

.cms-web-development .professional_seo_serv_side_wrp>h3 {
    font-size: 23px;
}

.cms-solutions-secc .theme-heading>h2 {
    font-size: 53px;
}

.cms-solutions-secc .cms-solution-wrppp>h3 {
    font-size: 22px;
    margin-bottom: 13px;
    color: var(--theme);
}

.cms-solutions-secc .cms-solution-wrppp {
    margin-top: 7%;
}

.cms-solutions-secc .cms-solution-wrppp>p {
    font-size: 17px;
    color: #000;
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
}

.cms-web-development .new_strip_form ul>li {
    width: 100%;
}

.cms-web-development .new_strip_form ul>li>a {
    height: 50px;
}

.cms-web-development .new_strip_form ul {
    margin-top: 20px !important;
    margin-bottom: 0 !important;
    width: 70%;
    margin: 0 auto;
}

/* cms web development */

/* personal branding */

.personal-branding-pgg .banner_text>span {
    font-size: 18px;
    text-transform: capitalize;
    font-family: 'Poppins';
    margin-top: 0;
    margin-bottom: 5px;
    font-weight: 500;
}

.personal-branding-pgg .banner_text>h1 {
    font-size: 57px;
    text-transform: capitalize;
    font-weight: 600;
}

.personal-branding-pgg .banner_text>ul>li {
    font-size: 18px;
    color: #fff;
    font-family: 'Roboto';
    font-weight: 300;
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
}

.personal-branding-pgg .banner_text>ul>li:after {
    position: absolute;
    content: "";
    background: #fff;
    width: 10px;
    height: 10px;
    left: 0;
    top: 6px;
    border-radius: 50%;
}

.personal-branding-pgg .banner_text>ul {
    margin-bottom: 20px;
}

.personal-branding-banner>img {
    width: 100%;
    height: auto;
}

.personal-branding-pgg .professional_seo_serv_sec .theme-heading>h2 {
    font-size: 43px;
    line-height: 1.3;
}

.personal-branding-pgg .professional_seo_serv_sec .theme-heading>p {
    font-size: 22px;
}

.personal-branding-pgg .professional_seo_serv_sec .theme-heading>ul>li {
    width: 30%;
}

.personal-branding-pgg .professional_seo_serv_sec .theme-heading>ul>li>a {
    height: 50px;
}

.personal-branding-pgg .secure-web-sec {
    margin: 0;
}

.personal-branding-pgg .secure-web-sec .theme_btn {
    width: fit-content;
    margin: 0 auto;
}

.personal-branding-pgg .secure-web-sec h2 {
    font-size: 45px;
    font-family: 'Roboto';
}

.represent-leaders-secc .theme_btn {
    width: fit-content;
    margin: 0 auto;
    margin-top: 40px;
}

.represent-leaders-secc .rank_box_wrpp {
    height: 270px;
}

.represent-leaders-secc .rank_box_wrpp>span {
    font-size: 25px;
    font-family: 'Roboto';
    font-weight: 400;
    line-height: 1.2;
}

.customer-busi-main-wrpp {
    position: relative;
    margin-top: 4%;
    cursor: pointer;
}

.customer-busi-main-wrpp>img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 5px;
}

.customer-busi-main-wrpp>.customer-busi-text-wrpp {
    position: absolute;
    bottom: 14%;
    left: 0;
    background-color: #341950;
    padding: 20px;
    overflow: hidden;
    height: 100px;
    transition: 0.3s ease-in-out;
}

.customer-busi-main-wrpp>.customer-busi-text-wrpp>h3 {
    color: #fff;
    font-size: 25px;
    font-family: 'Poppins';
    font-weight: 600;
    margin-bottom: 5px;
}

.customer-busi-main-wrpp>.customer-busi-text-wrpp>span {
    font-size: 20px;
    color: #fff;
    display: block;
    margin-bottom: 20px;
}

.customer-busi-main-wrpp>.customer-busi-text-wrpp>p {
    font-size: 15px;
    color: #fff;
    line-height: 1.5;
    margin: 0;
}

.customer-busi-main-wrpp:hover .customer-busi-text-wrpp {
    height: 100%;
    bottom: 0;
    transition: 0.3s ease-in-out;
    border-radius: 5px;
    background-color: #341950c9;
    padding-top: 30%;
}

.personal-branding-pgg .secure-web-sec .btn5 {
    width: fit-content;
    margin: 0 auto;
}

.personal-branding-pgg .secure-web-sec .btn5::after {
    background-color: rgb(255, 188, 71);
}

.roadmap-wrpp {
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    gap: 20px;
    margin-top: 4%;
}

.roadmap-wrpp>ul.d-flex>li {
    font-size: 25px;
    color: var(--theme);
    font-family: 'Roboto';
    font-weight: 500;
    line-height: 1.3;
}

.roadmap-wrpp>ul.d-flex {
    margin: 0;
    justify-content: space-between;
    width: 100%;
}

.roadmap-wrpp>ul.d-flex:first-child {
    width: 86%;
    text-align: center;
    margin-inline-start: auto;
}

.roadmap-wrpp>ul.d-flex:last-child {
    width: 85%;
    justify-content: space-between;
    text-align: center;
    margin-left: 40px;
}

.personal-branding-pgg .contact_imgg>img {
    height: 718px;
}

.roadmap-secc .theme_btn {
    width: fit-content;
    margin-top: 30px !important;
    margin: 0 auto;
}

/* personal branding */

/* step form */

#msform {
    text-align: center;
    position: relative;
    margin-top: 20px
}

#msform fieldset {
    border: 0 none;
    border-radius: 0.5rem;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    position: relative
}

.form-card {
    text-align: left
}

#msform fieldset:not(:first-of-type) {
    display: none
}

#msform .action-button {
    width: fit-content;
    font-weight: bold;
    color: white;
    border: 0 none;
    cursor: pointer;
    height: 50px;
    padding: 0 40px;
    margin-top: 10px;
    border-radius: 5px;
    color: var(--theme);
}

#msform .action-button-previous {
    width: 100px;
    background: #616161;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 0px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px 10px 0px;
    float: right
}

#msform .action-button-previous:hover,
#msform .action-button-previous:focus {
    background-color: #000000
}

.card {
    z-index: 0;
    border: none;
    position: relative
}

.fs-title {
    font-size: 25px;
    color: #673AB7;
    margin-bottom: 15px;
    font-weight: normal;
    text-align: left
}

.steps {
    font-size: 25px;
    color: gray;
    margin-bottom: 10px;
    font-weight: normal;
    text-align: right
}

.fieldlabels {
    color: gray;
    text-align: left
}

.wordpress-calculator-sec form fieldset .dynamic-textt-boxx p {
    background: transparent;
    color: #fff;
    padding: 0;
    margin: 0;
    font-size: 20px;
    margin-bottom: 8px;
    text-align: left;
    font-weight: 600;
    font-family: 'Roboto';
}

.dynamic-boxx>span {
    font-size: 25px;
    color: #fff;
    font-weight: 500;
    display: block;
    margin-bottom: 30px;
    border-bottom: 2px solid;
    padding-bottom: 5px;
    width: fit-content;
}

.dynamic-boxx {
    margin-top: 30px;
    text-align: left;
}

.wordpress-calculator-sec form button {
    border: 0;
    font-size: 18px;
    height: 50px;
    border-radius: 5px;
    padding: 0 20px;
    text-transform: capitalize;
    font-weight: 500;
}

/* step form */

/*popup form*/

.custom_popop_new .close-poppup {
    background: var(--theme);
    position: absolute;
    right: -50px;
    top: -70px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 30px;
    color: #fff;
    font-weight: bold;
    line-height: 20px;
    z-index: 10;
    cursor: pointer;
}

.custom_popop_new {
    width: 500px;
    margin: 0 auto;
    background-color: #fff;
    padding: 50px 30px;
    border-radius: 20px;
    position: relative;
    text-align: center;
}

.custom_popop_new .popup_close {
    position: absolute;
    top: -60px;
    left: -80px;
    width: 150px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.custom_popop_new .popup_close:hover {
    z-index: 1;
    transition: 0.3s ease-in-out;
    filter: blur(1px);
}

.custom_popop_new h2 {
    font-size: 34px;
    color: var(--theme);
    line-height: 40px;
    margin-bottom: 20px;
    font-family: 'Poppins', Sans-Serif;
    padding-top: 30px;
}

.custom_popop_new h2>span {
    display: block;
    font-size: 42px;
    font-family: 'avenir-black';
    color: #b4e2ff;
}

.custom_popop_new h4 {
    background: #f2f8ff;
    padding: 15px 20px;
    font-size: 19px;
    font-family: 'avenir-black';
    text-align: left;
    border-radius: 10px;
    color: #000;
}

.custom_popop_new h4>span {
    display: block;
    font-size: 13px;
    color: #000;
}

.custom_popop_new h3 {
    text-align: left;
    color: #fff;
    font-size: 19px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.custom_popop_new ul {text-align: left;}

.custom_popop_new ul>li {
    font-size: 16px;
    color: #fff;
    font-family: 'avenir-roman';
    margin-bottom: 10px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 17px;
}

.custom_popop_new ul>li>i {
    color: #040056;
    background: #fff;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 12px;
}

.custom_popop_new a:nth-child(1) {
    text-align: left;
    display: block;
}

.custom_popop_new a {
    text-align: left;
    color: #fff;
    display: block;
    text-decoration: underline;
    font-size: 19px;
    font-family: 'avenir-black';
}

.custom_popop_new a.theme-btn {
    width: fit-content;
    text-decoration: none;
    font-family: 'avenir-roman';
    margin-bottom: -80px !IMPORTANT;
    margin: 0 auto;
    margin-top: 40px;
    padding: 14px 50px !IMPORTANT;
}

.popup_main_new {
    padding: 80px 0px;
}

.toggle-poppup {
    position: relative;
    overflow: hidden !IMPORTANT;
}

.toggle-poppup .popup_main_new {
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: 999;
    margin: 0 auto;
    transition: 0.5s ease-in-out;
    display: block;
    transform: scale(1);
}

.popup_main_new {
    display: none;
    transform: scale(0);
}

.toggle-poppup:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 99;
    /* backdrop-filter: blur(10px); */
    background-color: #1f0b33a8;
}

.custom_popop_new img.popimg1 {
    position: absolute;
    left: -13%;
    top: -10%;
    width: 110px;
}

.custom_popop_new img.popimg2 {
    position: absolute;
    right: 0;
    top: -7%;
    right: -6%;
    width: 100px;
}

.custom_popop_new img.popimg3 {
    position: absolute;
    bottom: -20%;
    right: -30%;
    width: 150px;
}

.custom_popop_new p {
    font-size: 20px;
    color: #000;
    margin-bottom: 20px;
    font-family: 'Poppins';
    font-weight: 400;
}

.custom_popop_new form input, select {
    width: 100%;
    height: 50px;
    border-radius: 5px;
    border: 0;
    background-color: #f2f2f2;
    margin-bottom: 15px;
}

.custom_popop_new>.container {
    transform: scale(1);
}
.custom_popop_new form label {
    display: block;
    text-align: left;
    margin: 7px 0 6px;
    padding-left: 30px;
    font-size: 15px;
    color: #000;
}

.custom_popop_new form input {
    padding: 15px 30px;
}

.custom_popop_new form .btn4 {
    border: 0;
    margin-top: 0px;
}

.custom_popop_new h2 {
    margin-bottom: 10px;
}

.custom_popop_new form button {
    border: 0;
}
.custom_popop_new form textarea {
    width: 100%;
    height: 100px;
    resize: none;
    padding: 10px 30px;
    border: 0;
    border-radius: 5px;
    background: #f2f2f2;
    color: #000;
    margin-bottom: 5px;
}

/*popup form*/

.seo_serv_pgg .secure-web-sec form input {
    width: 100%;
    height: 50px;
    padding: 10px;
    border: 0;
    border-radius: 5px;
}

.seo_serv_pgg .secure-web-sec form button {
    width: 100% !important;
    border: 0;
}

.seo_serv_pgg .secure-web-sec form {
    width: 80%;
    margin: 0 auto;
}
.sms-marketing-pgg .web-sol-icon img {
    height: 130px;
    width: 130px;
}
.local_seo_pgg.web-dev_pgg .web-sol-icon img {
    width: 130px;
    height: 130px;
}

/* ecommerce-marketing */

.ecommerce-marketing-pgg .banner_text>h1 {
    font-size: 57px;
    text-transform: capitalize;
    font-weight: 600;
    font-family: 'Poppins';
}

.ecommerce-marketing-pgg .banner_text>ul>li {
    color: #fff;
    font-size: 18px;
    font-family: 'Roboto';
    font-weight: 300;
    margin-bottom: 5px;
    padding-left: 30px;
    position: relative;
}

.ecommerce-marketing-pgg .banner_text>ul>li:after {
    position: absolute;
    content: "";
    background: #fff;
    width: 10px;
    height: 10px;
    left: 0;
    top: 6px;
    border-radius: 50%;
}

.ecommerce-marketing-pgg .banner_text>ul {
    margin-bottom: 30px;
}

.ecommerce-marketing-pgg .banner_text>form {
    width: 80%;
}

.ecommerce-marketing-pgg .professional_seo_serv_sec .theme-heading>h2 {
    font-size: 40px;
}

.ecommerce-marketing-pgg .professional_seo_serv_side_wrp>h3 {
    font-size: 35px;
    margin-bottom: 5px;
}

.ecommerce-marketing-pgg .professional_seo_serv_side_wrp>p {
    font-size: 25px;
    font-weight: 400;
}

.ecommerce-marketing-pgg .professional_seo_serv_sec ul>li {
    width: 100%;
}

.ecommerce-marketing-pgg .professional_seo_serv_sec ul>li>a {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ecommerce-marketing-secc {
    background-color: #faf4ff;
}

.ecom-markett-wrpp {
    background-color: #fff;
    height: 100%;
    padding: 40px 20px;
    border-radius: 5px;
    box-shadow: rgb(0 0 0 / 28%) 12px 8px 21px;
    margin-top: 30px;
}

.ecom-markett-wrpp>h3 {
    font-size: 39px;
    color: #c469f2;
    margin-bottom: 30px;
}

.ecom-markett-wrpp>span {
    font-size: 20px;
    color: var(--theme);
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.ecom-markett-wrpp>p {
    font-size: 18px;
    color: #000;
    font-weight: 400;
    margin: 0;
    line-height: 1.4;
}

.new-ecom-logo-secc h2 {
    font-size: 40px;
    color: var(--theme);
    text-align: center;
    font-family: 'Roboto';
    margin-bottom: 40px;
}

.new-ecom-logo-secc img {
    width: 150px;
    height: auto;
    object-fit: cover;
}

.new-ecom-logo-secc .slick-slide {
    opacity: 1;
}

.new-ecom-logo-secc .slick-track {
    display: flex;
    align-items: end;
}

.ecommerce-marketing-pgg .web-sol-box {
    height: 210px;
}

.invest-ecommerce-secc .ecom-markett-wrpp {
    text-align: center;
}

.invest-ecommerce-secc .theme-heading>h2 {
    font-size: 43px;
    text-align: left;
}

.invest-ecommerce-secc .theme-heading>p {
    text-align: left;
}

.ecommerce-marketing-pgg .growth_starts_secc.supercharge_secc .grwth_img>img {
    height: 360px;
}

.ecommerce-marketing-pgg .growth_starts_secc .grwth_textt {
    height: 360px;
    display: flex;
    align-items: center;
}

/* ecommerce-marketing */

/* landing page and funnels */

.landing-page-funnels-pgg .banner_text>h1 {
    font-size: 56px;
    text-transform: capitalize;
    font-family: 'Poppins';
    font-weight: 500;
}

.landing-page-funnels-pgg .banner_text>ul>li {
    font-size: 18px;
    color: #fff;
    font-family: 'Roboto';
    font-weight: 300;
    margin-bottom: 8px;
    padding-left: 30px;
    position: relative;
}

.landing-page-funnels-pgg .banner_text>ul>li:after {
    position: absolute;
    content: "";
    background: #fff;
    width: 10px;
    height: 10px;
    left: 0;
    top: 7px;
    border-radius: 50%;
}

.landing-page-funnels-pgg .banner_text>ul {
    margin-bottom: 30px;
}

.funnels-banner>img {
    width: 100%;
}

.landing-page-funnels-pgg .improve_your_rankings_sec h2 {
    font-size: 43px;
}

.level-slider_funnel .slick-prev {
    display: none !important;
}

.level-slider_funnel .slick-next.vertical-next-btn {
    height: 420px;
    width: 85px;
    background: #af69ee;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin-top: -8px; */
}

.level-slider_funnel {
    padding-right: 70px !important;
    margin-top: 20px;
}

.level-slider_funnel .slick-next.vertical-next-btn::before {
    content: "";
    display: none;
}

.level-slider_funnel button.slick-next.vertical-next-btn span {
    font-size: 20px;
    font-weight: 500;
    display: block;
    color: #fff;
    writing-mode: tb;
    padding-top: 35px;
    transform: rotate(180deg);
}

.level-slider_funnel .slick-next.vertical-next-btn i {
    position: absolute;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    bottom: 20px;
    border: 2px solid #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-weight: 700;
}

.landing-page-funnels-pgg .growth_starts_secc .grwth_img>img {
    height: 420px;
}

.landing-page-funnels-pgg .growth_starts_secc .grwth_textt {
    height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.level-slider_funnel .slick-list {
    padding: 20px 0px;
}

.landing-page-funnels-pgg .agency_tabss_content>p {
    font-size: 18px;
}

.landing-page-funnels-pgg section.secure-web-sec h2 {
    font-size: 42px;
    font-family: 'Roboto';
    width: 80%;
    margin: 0 auto;
    margin-bottom: 20px;
}

.landing-page-funnels-pgg section.secure-web-sec {
    margin: 0;
}

.landing-page-funnels-pgg section.secure-web-sec .btn5::after {
    background-color: rgb(255, 188, 71);
}

.landing-page-funnels-pgg .our_customer_grow h2 {
    font-size: 43px;
    font-weight: 600;
}

.landing-page-funnels-pgg .our_customer_grow p {
    font-size: 22px;
    color: #000;
    font-family: 'Poppins';
    font-weight: 500;
    line-height: 1.4;
}

.landing-page-funnels-pgg .our_customer_sticky>p {
    font-size: 20px !important;
    margin-bottom: 10px !important;
    font-weight: 300;
    width: 80%;
    margin: 0 auto;
}

.landing-page-funnels-pgg .our_customer_sticky>ul {
    gap: 10px;
}

.landing-page-funnels-pgg .our_customer_sticky>ul>a {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.landing-page-funnels-pgg .banner_text>form {
    width: 80%;
}

.landing-page-funnels-pgg .contact_imgg>img {
    height: 754px;
}

/* landing page and funnels */

/* digital marketing competitor analysis */

.digital-marketing-competitor-analysis-pgg .banner_text>h1 {
    font-size: 50px;
    text-transform: capitalize;
    font-weight: 500;
}

.digital-marketing-competitor-analysis-pgg .banner_text>h1>span {
    display: block;
    font-size: 35px;
}

.competitor-analysis-secc .theme-heading>h2 {
    font-size: 53px;
    width: 80%;
    margin: 0 auto;
    margin-bottom: 30px;
}

.competitor-analysis-secc .rank_box_wrpp {
    box-shadow: none;
    background-color: #fafafa;
}

.digital-marketing-competitor-analysis-pgg .professional_seo_serv_sec .theme-heading>h2 {
    font-size: 53px;
    line-height: 1.1;
}

.digital-marketing-competitor-analysis-pgg .professional_seo_serv_sec .theme-heading>ul {
    display: flex;
    gap: 10px;
    margin-bottom: 0;
    margin-top: 30px;
}

.digital-marketing-competitor-analysis-pgg .professional_seo_serv_sec .theme-heading>ul>li:first-child>.theme_btn::after {
    background: #341950;
}

.digital-marketing-competitor-analysis-pgg .professional_seo_serv_sec .theme-heading>ul>li {
    width: 40%;
}

.digital-marketing-competitor-analysis-pgg .professional_seo_serv_side_wrp>h3 {
    margin-bottom: 5px;
}

.digital-marketing-competitor-analysis-pgg .professional_seo_serv_side_wrp .btn5::after {
    background-color: rgb(255, 188, 71);
}

.competitor-analysis-services-secc .theme-heading>h2 {
    font-size: 53px;
    width: 65%;
    margin: 0 auto;
    margin-bottom: 15px;
}

.competitor-new-boxx {
    margin-top: 50px;
    position: relative;
}

.competitor-new-boxx>span {
    border: 15px solid #af69ee;
    border-radius: 50%;
    width: 250px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.competitor-new-boxx>span>img {
    width: 110px;
    height: 110px;
    object-fit: contain;
}

.competitor-new-boxx>p {
    text-align: center;
    margin-bottom: 0;
    font-size: 16px;
    margin-top: 20px;
    font-weight: 500;
    color: #000;
    font-family: 'Roboto';
}

.competitor-new-boxx>.tag-wrap {
    filter: drop-shadow(-1px 6px 3px rgba(50, 50, 0, 0.5));
}

.competitor-new-boxx>.tag-wrap>.tag {
    background: #FB8C00;
    color: #222;
    padding: 2rem 3rem 2rem 4rem;
    font: bold 32px system-ui;
    clip-path: polygon(30px 0%, 100% 0%, 100% 100%, 30px 100%, 0 50%);
}

.competitor-new-boxx>img.img-pop {
    position: absolute;
    right: -80px;
    z-index: 1;
    width: 90px;
    height: 80%;
}

.bring-change-secc .theme-heading>h2 {
    font-size: 50px;
    width: 70%;
    margin: 0 auto;
    margin-bottom: 10px;
}

.bring-change-secc .theme-heading {
    margin-bottom: 40px;
}

/* digital marketing competitor analysis */


/* new header design */

header .dropdown-menu {
    width: 700px;
    /*background-color: #f7eeff;*/
    left: -260px !important;
}

header .dropdown-menu .header-card-wrpp>img {
    width: 100%;
    height: 410px;
    border-radius: 10px;
    object-fit: cover;
    object-position: 0px -80px;
}

header .dropdown-menu .header-card-wrpp {
    position: relative;
}

header .dropdown-menu .header-card-wrpp>.header-card-textt-wrpp {
    position: absolute;
    top: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    width: 100%;
    padding: 20px 10px;
}

header .dropdown-menu .header-card-wrpp>.header-card-textt-wrpp>h2 {
    font-size: 35px;
    color: var(--theme);
}

header .dropdown-menu .header-card-wrpp>.header-card-textt-wrpp>h2>span {
    display: block;
    font-size: 15px;
}

/*header .dropdown-menu:after {
    position: absolute;
    content: "";
    background: #af69ee;
    width: 1px;
    height: 100%;
    right: 0;
    top: 0;
    left: 0;
    margin: 0 auto;
}*/

header .dropdown-menu>.row>.col-md-6:first-child {
    position: relative;
}

header .dropdown-menu>.row>.col-md-6:first-child .header-p {
    position: absolute;
    bottom: 0;
    left: 7%;
    background-color: #f7eeff;
    height: 140px;
    display: flex;
    align-items: center;
    padding: 20px;
    border-radius: 10px;
}

header .dropdown-menu>.row>.col-md-6:first-child .header-p>p {
    font-size: 20px;
    font-family: 'Poppins';
    font-weight: bold;
    line-height: 1.4;
    margin: 0;
    color: var(--theme);
}

.privacy_secc h4 {
    font-size: 40px;
    color: var(--theme);
    font-weight: 600;
    margin-bottom: 40px;
}
.privacy_secc a {
    color: #341950;
}

/* new header design */


.cus-tabs .new-port-btnn > a:after {display: none;}

.cus-tabs .new-port-btnn > a:before {
    display: none;
}

.cus-tabs .new-port-btnn > a {
    width: fit-content;
    transition: 0.3s ease-in-out;
    padding: 5px 0px;
    color: #000;
    font-size: 20px;
    font-weight: 600;
    border-bottom: 1px solid;
    font-family: 'Roboto';
}


/*animated banner*/

.banner-animated-wrpp {
    position: relative;
}

.banner-animated-wrpp > .banner-logo-wrpp {
    position: relative;
    z-index: 1;
}

.banner-animated-wrpp > .banner-logo-wrpp > img {
    width: 160px;
    display: block;
    margin-inline-start: auto;
    margin-right: 127px;
}

.banner-animated-wrpp > .banner-logo-wrpp > span {
    width: 220px;
    height: 220px;
    background: #fff;
    display: block;
    border-radius: 50%;
    position: absolute;
    opacity: .3;
    top: -31px;
    left: 208px;
    z-index: -1;
    animation: 2s move;
}

.banner-animated-wrpp > .banner-logo-wrpp > span:nth-child(2) {
    transform: scale(1.3);
    animation: 3s movetwo;
}

.banner-animated-wrpp > .banner-logo-wrpp > span:nth-child(3) {
    transform: scale(1.5);
    animation: 4s movethree;
}

.banner-animated-wrpp .banner-imgs-wrpp {
    position: absolute;
    top: -120px;
    left: 70px;
    z-index: 1;
    width: 100%;
    animation: 2.5s movefour;
    animation-delay: 3s;
    opacity: 0;
}

/*animated banner*/

@keyframes move {
  from {
      transform: scale(0);
  }
  to {
      transform: scale(1);
  }
}

@keyframes movetwo {
  from {
      transform: scale(0);
  }
  to {
      transform: scale(1.3);
  }
}

@keyframes movethree {
  from {
      transform: scale(0);
  }
  to {
      transform: scale(1.5);
  }
}

@keyframes movefour {
  from {
      transform: scale(0);
      opacity: 0;
  }
  to {
      transform: scale(1);
      opacity: 1;
  }
}

/*animated banner*/


.home_pgg .growth_starts_secc.supercharge_secc .grwth_textt>a {
    transition: 0.3s ease-in-out;
    padding: 5px 0px;
    width: fit-content;
}


/* about us page */

.aboutt_pgg .banner_text > h1 {
    font-size: 54px;
    text-transform: capitalize;
    font-weight: 600;
}

.aboutt_pgg .home-banner:before {
    position: absolute;
    content: "";
    background-image: url(../images/about/vec1.png);
    width: 44%;
    height: 70%;
    right: 0;
    top: 20%;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.aboutt_pgg .banner_text>p {
    width: 90%;
}

.branding-mate-evolution-secc {
    background-color: #faf4ff;
}

.branding-mate-evolution-secc .branding-mate-evolution-boxx > h2 {
    font-size: 56px;
    color: var(--theme);
    font-weight: 600;
}

.branding-mate-evolution-secc .branding-mate-evolution-boxx > p {
    font-size: 18px;
    color: #000;
    font-weight: 400;
    width: 60%;
    line-height: 1.4;
    margin-bottom: 0;
}

.branding-mate-evolution-secc .branding-mate-evolution-boxx > img {
    width: 90%;
    margin-inline-start: auto;
    display: block;
    margin-top: -21%;
}

.meet-our-creative-minds-secc .btn5 {
    width: fit-content;
    margin: 0 auto;
    padding: 0 30px;
    color: #000;
}

.meet-our-creative-minds-secc .theme-heading>p {
    font-size: 18px;
    font-family: 'Poppins';
    margin: 30px 0px;
}

.our-creative-minds_boxx {
    position: relative;
    margin-top: 40px;
    transition: 0.4s ease-in-out;
}

.our-creative-minds_boxx>img {
    width: 100%;
    height: 335px;
    object-fit: cover;
    border-radius: 15px;
}

.our-creative-minds_boxx>.our-creative-minds_boxx-textt {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 20px;
}

.our-creative-minds_boxx>.our-creative-minds_boxx-textt>span {
    color: #fff;
    font-size: 13.25px;
    font-family: 'Poppins';
    display: block;
    line-height: 1;
    margin-bottom: 10px;
}

.our-creative-minds_boxx>.our-creative-minds_boxx-textt>span:first-child {
    font-weight: 600;
}

.our-creative-minds_boxx>.our-creative-minds_boxx-textt>ul {
    margin: 0;
    display: flex;
    gap: 5px;
}

.our-creative-minds_boxx>.our-creative-minds_boxx-textt>ul>li>a {
    font-size: 12px;
    color: #fff;
    border: 1px solid #fff;
    width: fit-content;
    padding: 3px 12px;
    border-radius: 20px;
    transition: 0.4s ease-in-out;
}

.our-creative-minds_boxx:hover .our-creative-minds_boxx-textt>ul>li>a {
    background: #ffbc47;
    color: #000;
    border-color: #000;
}

.meet-our-creative-minds-secc .slick-active {
    opacity: 1;
}

.meet-our-creative-minds-secc .slick-slide {
    margin: 0 10px;
}

.stay_connected_secc ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    margin: 0 auto;
    gap: 20px;
}

.stay_connected_secc ul > li {
    width: 100%;
    text-align: center;
}

.stay_connected_secc ul > li > a {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #bd83f1;
    height: 200px;
    border-radius: 10px;
    transition: 0.3s ease-in-out;
}

.stay_connected_secc ul > li > a > img {
    width: 30%;
    border-radius: 50%;
    transition: 0.3s ease-in-out;
}

.stay_connected_secc ul > li > a:hover {
    background-color: var(--theme);
    transition: 0.3s ease-in-out;
}

.stay_connected_secc ul > li > a:hover img {
    transform: scale(1.3);
    transition: 0.3s ease-in-out;
    filter: drop-shadow(1px 1px 10px #fff);
}

.aboutt_pgg .contact_imgg>img {
    height: 755px;
}

/* about us page end */

/* career us page */

.careerr_pgg .banner_text > h1 {
    font-size: 57px;
    text-transform: capitalize;
    font-weight: 500;
}

.careerr_pgg .home-banner:before {
    position: absolute;
    content: "";
    background-image: url(../images/career/vec1.png);
    width: 445px;
    height: 300px;
    left: 32%;
    top: 26%;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    transition: 0.5s ease-in-out;
}

.careerr_pgg .ecom-markett-wrpp>span {
    font-size: 27px;
    margin-bottom: 20px;
}

.ecom-markett-wrpp {
    position: relative;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    z-index: 1;
}

.ecom-markett-wrpp:after {
    position: absolute;
    content: "";
    background: var(--theme);
    width: 0;
    height: 5px;
    bottom: 0;
    transition: 0.3s ease-in-out;
    left: 0;
    right: 0;
    margin: 0 auto;
    transition-delay: 0.3s;
}

.ecom-markett-wrpp:hover:after {
    width: 100%;
    transition: 0.3s ease-in-out;
}

.ecom-markett-wrpp:before {
    position: absolute;
    content: "";
    background: #af69ee6b;
    width: 100%;
    height: 0;
    left: 0;
    bottom: 0;
    z-index: -1;
    transition: 0.3s ease-in-out;
    border-radius: 5px;
}

.ecom-markett-wrpp:hover:before {
    height: 100%;
    transition: 0.3s ease-in-out;
    transition-delay: 0.3s;
}

.careerr_pgg .lightcamera-secc h2 {
    font-size: 56px;
    font-weight: 600;
    margin-bottom: 20px;
}

.careerr_pgg .lightcamera-secc {
    background-color: #faf4ff;
    margin-top: 30px;
}



.lightcamera-slidertwo .lightcamera-textt-wrpp h4 {
    font-size: 22px;
    font-weight: 600;
    color: var(--theme);
}

.lightcamera-slidertwo .lightcamera-textt-wrpp p > span {
    font-size: 17px;
    color: var(--theme);
    font-weight: 600;
    margin-right: 5px;
}

.lightcamera-slidertwo .lightcamera-textt-wrpp p {
    font-size: 17px;
    color: #000;
    font-weight: 400;
    line-height: 1.3;
}

.lightcamera-slidertwo .vertical-next-btn {
    height: 100%;
    width: 85px;
    background: rgb(255, 255, 255);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightcamera-slidertwo .vertical-next-btn>span {
    font-size: 25px;
    font-weight: 600;
    display: block;
    color: rgb(52, 25, 80);
    writing-mode: tb;
    padding-top: 35px;
    transform: rotate(180deg);
    ;
}

.lightcamera-slidertwo .vertical-next-btn {
    height: 540px;
    width: 85px;
    background: #af69ee;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightcamera-slidertwo button.slick-next.vertical-next-btn i {
    position: absolute;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    bottom: 20px;
    border: 2px solid #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-weight: 700;
}

.lightcamera-slidertwo {
    padding-right: 70px;
}

.lightcamera-slidertwo .slick-list {
    padding-bottom: 20px;
    padding-top: 20px;
}

.lightcamera-slidertwo .lightcamera-textt-wrpp {
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    display: flex;
    flex-direction: column;
    padding: 40px 30px;
    border-radius: 10px;
    justify-content: space-between;
    height: 540px;
}

.lightcamera-slidertwo .lightcamera-textt-wrpp > .pkgg_btn {
    font-size: 18px;
    color: var(--theme);
    border-bottom: 1px solid;
    width: fit-content;
    font-weight: 500;
    padding: 5px 0px;
    transition: 0.3s ease-in-out;
}

.lightcamera-slidertwo span>img {
    height: 540px;
    object-fit: cover;
    border-radius: 15px;
}

.careerr_pgg .improve_your_rankings_sec h2 {
    font-size: 45px;
}

.careerr_pgg .improve_your_rankings_sec p {
    font-size: 21px;
    width: 70%;
    margin: 0 auto;
    line-height: 1.3;
    margin-bottom: 30px;
}

.careerr_pgg .improve_rank_slider .slick-track {
    display: flex;
    align-items: stretch;
}

.careerr_pgg .improve_rank_slider .slick-track .slick-slide {
    height: auto;
}

.careerr_pgg .rank_box_wrpp {
    border: 1px solid #d7d7d7;
    box-shadow: none;
}

.careerr_pgg .rank_box_wrpp:hover {box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;border-color: transparent;}

/* career us page end */


/* cv popup */

.custom_popop_new-two .poppup_close {
    background: #341950;
    position: absolute;
    right: -50px;
    top: -110px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 30px;
    color: #fff;
    font-weight: bold;
    line-height: 20px;
    z-index: 10;
    cursor: pointer;
}

.custom_popop_new-two {
    width: 500px;
    margin: 0 auto;
    background-color: #fff;
    padding: 80px 30px 50px;
    border-radius: 20px;
    position: relative;
    text-align: center;
}

.custom_popop_new-two .popup_close {
    position: absolute;
    top: -60px;
    left: -80px;
    width: 150px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.custom_popop_new-two .popup_close:hover {
    z-index: 1;
    transition: 0.3s ease-in-out;
    filter: blur(1px);
}

.custom_popop_new-two h2 {
    font-size: 34px;
    color: #341950;
    line-height: 40px;
    margin-bottom: 20px;
    font-family: 'Poppins', Sans-Serif;
    padding-top: 30px;
}

.custom_popop_new-two h2>span {
    display: block;
    font-size: 42px;
    font-family: 'avenir-black';
    color: #b4e2ff;
}

.custom_popop_new-two h4 {
    background: #f2f8ff;
    padding: 15px 20px;
    font-size: 19px;
    font-family: 'avenir-black';
    text-align: left;
    border-radius: 10px;
    color: #000;
}

.custom_popop_new-two h4>span {
    display: block;
    font-size: 13px;
    color: #000;
}

.custom_popop_new-two h3 {
    text-align: left;
    color: #fff;
    font-size: 19px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.custom_popop_new-two ul {text-align: left;}

.custom_popop_new-two ul>li {
    font-size: 16px;
    color: #fff;
    font-family: 'avenir-roman';
    margin-bottom: 10px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 17px;
}

.custom_popop_new-two ul>li>i {
    color: #040056;
    background: #fff;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 12px;
}

.custom_popop_new-two a:nth-child(1) {
    text-align: left;
    display: block;
}

.custom_popop_new-two a {
    text-align: left;
    color: #fff;
    display: block;
    text-decoration: underline;
    font-size: 19px;
    font-family: 'avenir-black';
}

.custom_popop_new-two a.theme-btn {
    width: fit-content;
    text-decoration: none;
    font-family: 'avenir-roman';
    margin-bottom: -80px !IMPORTANT;
    margin: 0 auto;
    margin-top: 40px;
    padding: 14px 50px !IMPORTANT;
}

.popup_main_new-two {
    padding: 80px 0px;
}

.toggle-poppup-two {
    position: relative;
    overflow: hidden !IMPORTANT;
}

.toggle-poppup-two .popup_main_new-two {
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: 999;
    margin: 0 auto;
    transition: 0.5s ease-in-out;
    display: block;
    transform: scale(1);
}

.popup_main_new-two {
    display: none;
    transform: scale(0);
}

.toggle-poppup-two:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 99;
    /* backdrop-filter: blur(10px); */
    background-color: #1f0b33a8;
}

.custom_popop_new-two img.popimg1 {
    position: absolute;
    left: -13%;
    top: -60%;
    width: 110px;
}

.custom_popop_new-two img.popimg2 {
    position: absolute;
    top: -36%;
    right: -6%;
    width: 100px;
}

.custom_popop_new-two img.popimg3 {
    position: absolute;
    bottom: -50%;
    right: -30%;
    width: 150px;
}

.custom_popop_new-two p {
    font-size: 20px;
    color: #000;
    margin-bottom: 20px;
    font-family: 'Poppins';
    font-weight: 400;
}


.custom_popop_new-two>.container {
    transform: scale(1);
}
.custom_popop_new-two form label {
    display: block;
    text-align: left;
    margin: 7px 0 6px;
    padding-left: 30px;
    font-size: 15px;
    color: #000;
}

.custom_popop_new-two form .btn4 {
    border: 0;
    margin-top: 0px;
}

.custom_popop_new-two h2 {
    margin-bottom: 10px;
}

.custom_popop_new-two form>label {
    background: #f9f9f9;
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #c9c9c9;
    border-radius: 4px;
    border-style: dashed;
    cursor: pointer;
}

.custom_popop_new-two form>label>p {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0;
    color: #7c7c7c;
    font-size: 18px;
}

.custom_popop_new-two form>label>p>span {
    background: #c469f2;
    color: #fff;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 25px;
}

.custom_popop_new-two form>button {
    border: 0;
}

/* cv popup */

.logo-design-pgg .cus-tabs a::after {
    content: "\f06e";
    font-family: 'Font Awesome 5 Pro';
    background-color: #af69ee;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 35px;
    margin: 10px 10px 0px;
    color: #000;
}

.logo-design-pgg .cus-tabs a {
    align-items: baseline;
    justify-content: flex-end;
}

.logo-design-pgg .cus-tabs a:hover img {
    object-position: top !important;
}

.logo-design-pgg .cus-tabs a::before {
    display: none;
}

header .navbar-brand > img {
    transform: scale(1.5);
}