@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');

/***** General CSS *****/

: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: #393939;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #28b16d;
    white-space: initial;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #393939;
}

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

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;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

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

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

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


/***** Font Files *****/


/* @font-face {
    font-family: 'Fonts Awesome';
    src: url(../fontawesome/webfonts/fa-brands-400.eot);
    font-weight: 400;
    font-style: normal
} */


/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.centerCol {
    float: none;
    margin: 0 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: #FFF;
    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: #af69ee;
    left: 0;
    top: 0;
    /* border-radius: 10px; */
    transition: 0.5s;
    border-radius: 5px;
}


/* glow */

.theme_btn::before {
    content: "";
    background: linear-gradient(45deg, #000000, #341950, #af69ee, #341950, #000000, #341950, #af69ee, #341950);
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 600%;
    z-index: -1;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    filter: blur(8px);
    animation: glowing 20s linear infinite;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
    opacity: 0;
}

@keyframes glowing {
    0% {
        background-position: 0 0;
    }
    50% {
        background-position: 400% 0;
    }
    100% {
        background-position: 0 0;
    }
}


/* hover */

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

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

.theme_btn:active {
    color: #000;
    font-weight: bold;
}

.theme_btn:hover:after {
    /* background: var(--gradient); */
    border-radius: 5px;
}

.theme_btn:hover {
    color: #fff;
}

.flexRow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.flexCol {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    align-items: center;
}

h1 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 22px;
    line-height: 1.2;
    color: #fff;
    font-weight: 400;
    text-transform: uppercase;
    margin: 0 0 16px;
}

h2 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 53.23px;
    line-height: 1.2;
    color: #fff;
    font-weight: 700;
    margin: 0 0 20px;
}

h3 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 30px;
    line-height: 1.2;
    color: #000000;
    font-weight: 600;
    margin: 0 0 28px;
}

h4 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 24px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 13px;
}

h5 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 20px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 20px;
}

h6 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 18px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 22px;
}

select {
    background: #fff url('../images/arrow.png') no-repeat right;
    padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
    color: #575757;
}

::-moz-placeholder {
    color: #575757;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #575757;
}

:-moz-placeholder {
    color: #575757;
    opacity: 1;
}


/*header*/

header {
    padding: 15px 0px;
    position: absolute;
    z-index: 9999;
    background-color: #fff;
    transition: 0.3s ease-in-out;
    width: 100%;
    top: 0;
}

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

header .cutm_header {
    width: 100% !IMPORTANT;
    gap: 13px;
    margin: 0;
}

.navbar-expand-lg .navbar-collapse {
    gap: 10px;
}

/*.navbar-expand-lg .navbar-collapse > * {width: 15%;margin-inline-start: auto;justify-content: end;align-items: center;}*/

header .cutm_header>li>a {
    border: 1px solid #a3a3a3;
    border-radius: 5px;
    padding: 14px 10px;
    cursor: default;
}

header .cutm_header>li>a>img {
    width: 100px;
    height: 45px;
    object-fit: contain;
}

header .navbar-brand img {
    width: 170px;
}

.d-flex.lp_header {
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.d-flex.lp_header>ul:last-child {
    width: 30%;
    margin-bottom: 5px;
}

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

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

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

header .navbar-brand {
    font-size: 30px;
    color: #000 !important;
    font-weight: 600;
    margin-right: 0;
    width: 15%;
    padding: 0;
}

header .bg-dark {
    background-color: #fff !IMPORTANT;
    padding: 0;
}

header .navbar-dark .navbar-nav .nav-link,
.navbar-dark .navbar-text {
    font-size: 15px;
    color: #000 !important;
    font-family: 'Roboto', sans-serif;
}


/*header*/


/*banner*/

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

.carousel-item>.carousel-option {
    position: absolute;
    top: 0;
    left: 0;
    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: #fff;
    line-height: 31px;
}

.banner_text>span {
    color: #fff;
    font-size: 20px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 30px;
    margin-top: 40px;
}

.banner_text>form {
    background-color: #fff;
    padding: 20px 15px;
    border-radius: 5px;
}

.banner_text>form input {
    width: 100%;
    height: 40px;
    border: 0;
    border-bottom: 1px solid #959595;
    margin-bottom: 20px;
}

.banner_text>form input::placeholder {
    color: #000;
    font-family: 'Roboto';
}

.theme_btn2 {
    border: 0;
    background-color: #000000;
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 50px;
    border-radius: 5px;
    font-weight: 600;
    /* transition: .5s ease-in-out; */
}

.theme_btn2:hover {
    background: #ffbc47;
    transition: .5s ease-in-out;
}

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

.banner_values .web_operat_div {
    background-color: #ffbc47;
    position: absolute;
    top: 0;
    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: #000;
    font-family: 'Poppins';
    font-weight: 600;
    margin: 0;
}

.banner_values .web_operat_div span {
    font-size: 68px;
    color: #000;
    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: #000;
    font-weight: 500;
    margin: 0;
}

.web_operat_div.leads_div.item {
    left: 70%;
    background-color: #af69ee;
    width: 180px;
    height: 180px;
    top: 40px !important;
}

.web_operat_div.leads_div.item h1 {
    color: #fff;
    font-size: 48px;
}

.web_operat_div.leads_div.item span {
    color: #fff;
    font-size: 48px;
}

.web_operat_div.leads_div.item p {
    font-size: 13px;
    color: #fff;
}

.web_operat_div.optimizd_div.item {
    background-color: #af69ee;
    width: 160px;
    height: 160px;
    top: 270px;
    left: 70px;
}

.web_operat_div.optimizd_div.item h1 {
    font-size: 42px;
    color: #fff;
}

.web_operat_div.optimizd_div.item p {
    font-size: 12px;
    color: #fff;
}

.web_operat_div.compaigns_div.item {
    background-color: #fff;
    top: unset;
    bottom: 0;
    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;
    /* animation: 5s abc linear infinite; */
    background-repeat: no-repeat;
}

@keyframes abc {
    from {
        transform: rotate(0deg);
    }
    to {
        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 abc linear infinite;
}

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

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

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

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

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


/*banner*/


/* banner bottom */

.banner_bottom_sec:after {
    position: absolute;
    content: "";
    /* backdrop-filter: blur(1px); */
    /* background-color: rgb(0 0 0 / 0%); */
    width: 20%;
    height: 100%;
    right: 0;
    top: 0;
}

.banner_bottom_sec {
    background-color: #e5c8ff;
    padding: 30px 0px;
    position: relative;
}

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

.banner_bottom_sec .ban_slidr ul li {
    font-size: 17.68px;
    color: #000;
    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: #000;
    width: 2px;
    height: 70%;
    left: -22px;
    top: 4px;
}

.banner_bottom_sec .ban_slidr ul:after {
    position: absolute;
    content: "";
    background: #fff;
    width: 2px;
    height: 100%;
    right: -20px;
}

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


/* banner bottom */


/* logos_sec */

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


/* logos_sec */

.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: #000;
    font-family: 'Poppins';
    font-weight: 500;
    line-height: 1.5;
}

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


/* growth_starts_secc */

.growth_starts_secc .grwth_textt {
    box-shadow: rgba(0, 0, 0, 0.35) 8px 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: 20px;
    color: #000;
    font-family: 'Poppins', Sans-Serif;
    line-height: 1.7;
    margin: 0;
    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: 0 auto;
}

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

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


/* growth_starts_secc */


/* witness_unreal_sec   */

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

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

.witness_unreal_div>form input {
    width: 100%;
    height: 50px;
    border-radius: 6px;
    border: 0;
    background: #e6e6e6;
    position: relative;
    padding: 10px 20px;
}

.witness_unreal_div>form input:after {
    width: 100%;
    height: 100%;
    background-color: #959595;
    top: 0;
    left: 0;
}

.witness_unreal_div>form input::placeholder {
    color: #000;
    font-weight: 400;
    font-family: 'Roboto';
}

.witness_unreal_div>form button {
    width: 100%;
    height: 50px;
    border: 0;
    border-radius: 5px;
    background: #ffbc47;
    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: 0;
    top: 0;
    z-index: -1;
}


/* witness_unreal_sec   */


/* we_are_up_secc */

.we_are_textt_div {
    border: 1px solid #dfdfdf;
    border-radius: 10px;
    padding: 30px 15px;
    transition: 0.3s ease-in-out;
    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: 0.3s ease-in-out;
}

.we_are_textt_div>p {
    font-size: 18px;
    color: #000;
    line-height: 1.6;
    font-weight: 400;
    transition: 0.3s ease-in-out;
}

.we_are_textt_div>ul>li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    font-size: 18px;
    color: #000;
    font-family: 'Roboto';
    transition: 0.3s ease-in-out;
    border-bottom: 1px solid #fff;
    width: fit-content;
}

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

.we_are_textt_div>ul>li:after {
    position: absolute;
    content: "";
    background: #ffbc47;
    width: 7px;
    height: 7px;
    left: 0;
    top: 6px;
    border-radius: 50%;
    transition: 0.3s ease-in-out;
}

.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 #8c7d9c;
    width: fit-content;
    margin-inline-start: auto;
    display: block;
    transition: 0.3s ease-in-out;
    padding: 5px 0px;
}

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

.we_are_textt_div:hover:after {
    width: 100%;
    transition: 0.2s ease-in-out;
    transition-delay: 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: 0.3s ease-in-out;
}

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

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

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


/* we_are_up_secc */


/* impactful_results_sec */

.counter_secc_wrpp>ul {
    justify-content: space-between;
    margin: 0;
    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: 0;
    display: block;
}


/* impactful_results_sec */


/* portfolio_secc */

.portfolio_secc {
    background-color: #faf4ff;
}

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

.custom_tabbing_wrpp>ul>li.curr-tab {
    background: #fff;
    transition: 0.3s ease-in-out;
}

.cus-tabs {
    display: none;
}

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

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

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

.cus-tabs a:after {
    position: absolute;
    content: "View";
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    font-family: 'Roboto';
    transition: 0.3s ease-in-out;
    transform: scale(0);
    z-index: 2;
}

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

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

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

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


/* portfolio_secc */


/* empower_business_sec */

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

.empower_business_sec .custom_tabbing_wrpp>ul>li {
    color: #fff;
    font-weight: 500;
    background-color: #af69ee;
    border-radius: 5px;
    padding: 13px 20px;
}

.empower_business_sec .custom_tabbing_wrpp>ul>li.curr-tab {
    background-color: #ffbc47;
    color: var(--theme);
}

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

.empower_business_sec .empower_tab_wrp ul {
    margin: 0;
}

.empower_business_sec .empower_tab_wrp ul>li {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
    transition: 0.2s ease-in-out;
    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: #fff;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}

.empower_business_sec .empower_tab_wrp ul>li:after {
    position: absolute;
    content: "";
    background: #af69ee;
    width: 65px;
    height: 65px;
    left: 0;
    top: 0;
    border-radius: 10px;
    z-index: -1;
    transition: 0.2s ease-in-out;
}

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

.empower_business_sec .pkgg_btn {
    font-size: 18px;
    color: #fff;
    border-bottom: 1px solid;
    display: block;
    width: fit-content;
    margin-top: 50px;
    margin-inline-start: auto;
    margin-bottom: -30px;
    padding: 5px 0px;
    transition: 0.3s ease-in-out;
}

.empower_business_sec:before {
    position: absolute;
    content: "";
    background-image: url(../images/vec5.png);
    width: 250px;
    height: 30px;
    left: 0;
    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: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: 100%;
    animation: 5s abc linear infinite;
    z-index: -1;
}


/* empower_business_sec */


/* supercharge_secc */

.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: 0;
    margin-top: 20px;
}

.growth_starts_secc.supercharge_secc .grwth_textt>ul>li>span {
    font-size: 18px;
    color: #000;
    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 #594370;
    transition: 0.3s ease-in-out;
    padding: 5px 0px;
}

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


/* supercharge_secc */


/* testimonials_secc */

.testi_main_box {
    border: 1px solid #dddddd;
    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: 2px solid;
    border-color: var(--theme);
    top: -50px;
    height: 110px;
}

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

.testi_main_box>p {
    font-size: 18px;
    color: #000;
    font-family: 'Poppins';
    font-weight: 500;
    line-height: 1.6;
}

.testi_main_box>span {
    font-size: 16px;
    font-family: 'Poppins';
    font-weight: 500;
    color: #3c3c3c;
}

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


/* testimonials_secc */


/* start_your_journey_sec */

.start_your_journey_sec {
    background: #faf4ff;
}

.start_your_journey_sec .bottom_counter_wrpp {
    margin-top: 40px;
    background: #fff;
    border: 1px solid #e7e5e9;
    padding: 20px 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: 0;
}

.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: 0.3s ease-in-out;
}

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


/* start_your_journey_sec */


/* contact form */

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

.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: inset 0 0 0 0.4375em #fff;
}

.radio_wrpp label span {
    display: flex;
    align-items: center;
    border-radius: 99em;
    transition: 0.25s ease;
    color: #414181;
    padding: 2px 20px;
    padding-left: 0px;
}

.radio_wrpp label span:hover {
    background-color: #d6d6e5;
}

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

.contact_form_secc .form_wrpp {
    background: #fff;
    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: 0;
    margin-bottom: 20px;
    background-color: #f2f2f2;
    padding: 15px;
    border-radius: 5px;
    color: #000;
}

.contact_form_secc .form_wrpp form input::placeholder {
    color: #000;
    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: #f2f2f2;
    padding: 20px 10px;
    border-radius: 5px;
    margin-bottom: 30px;
}

.radio_wrpp label span {
    gap: 10px;
    font-size: 15px;
    color: #000;
    font-family: 'roboto';
    font-weight: 500;
}

.radio_wrpp label span:before {
    width: 15px;
    height: 15px;
    background: #c0c0c0;
}

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

.contact_form_secc .form_wrpp ul>li:nth-child(2) a {
    width: 100%;
    background-color: #ffbc47;
    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;
}


/* contact form */

.growth_starts_secc .grwth_textt {
    position: relative;
}

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

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

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

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

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

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

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

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


/* footer */

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

.main_footer h3 {
    color: #fff;
    font-size: 33px;
    font-weight: 500;
    margin-bottom: 30px;
}

.main_footer ul>li>a {
    font-size: 19px;
    color: #fff;
    font-family: 'Roboto';
    font-weight: 300;
    transition: 0.3s all;
    border-bottom: 1px solid transparent;
    display: block;
    width: fit-content;
    margin-bottom: 15px;
}

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

.footer_bottm p {
    color: #fff;
    font-size: 19px;
    margin: 0;
}

.footer_bottm {
    border-top: 1px solid #7e7196;
    margin-top: 20px;
    padding-top: 30px;
}

.main_footer span {
    font-size: 20px;
    font-family: 'Roboto';
    display: block;
    margin-bottom: 30px;
    color: #af69ee;
}

.main_footer a {
    font-size: 19px;
    color: #fff;
    font-family: 'Roboto';
    font-weight: 300;
    transition: 0.3s all;
    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: 0.3s all;
}

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

.main_footer .social_media_links>li>a:hover {
    transform: none;
    background: transparent;
    color: #fff;
    border: 0;
}

.main_footer .social_media_links>li>a:hover .fa-facebook-f {
    background: #3F51B5;
}

.main_footer .social_media_links>li>a:hover .fa-linkedin-in {
    background: #0288D1;
}

.main_footer .social_media_links>li>a:hover .fa-twitter {
    background: #03A9F4;
}

.main_footer .social_media_links>li>a:hover .fa-instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 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: 0.3s all;
}

.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: 0.1s ease-in-out;
}

.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: 0;
    top: 10%;
    background-size: 100%;
    background-repeat: no-repeat;
}


/* footer */

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

.container {
    transform: scale(.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 {
    display: block !important;
    text-align: center;
}

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

/* inner pages css start */

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

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

.inner_banner .inner_banner_heading>h1>span {
    display: block;
    color: #fff;
    font-size: 57.23px;
    font-weight: 600;
    text-transform: capitalize;
}

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

.contact_form_secc .form_wrpp>form>textarea::placeholder {
    color: #000;
    font-family: 'Roboto';
}

.btn3 {
    border: 0;
    width: 100%;
    background-color: #ffbc47;
    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: 0;
    top: 0;
    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 abc linear infinite;
}

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

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

.privacy_secc p {
    color: #1e1e1e;
    font-size: 25px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 30px;
}

.privacy_secc .privacy_info_div {
    background-color: #faf4ff;
    padding: 30px 0px 0;
}

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

.privacy_secc ul>li {
    color: #000;
    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: 0;
}

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

.privacy_secc span {
    font-size: 25px;
    color: #000;
    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: 0;
}

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

/* inner pages css end */


/*SOCIAL MEDIA MARKETING*/

.social_media_banner_content h2{
    font-weight: 600;
}
.social_media_banner_img{
    position: relative;
}
.social_media_banner_img::before{
    content: '';
    position: absolute;
    left: -40px;
    bottom: 0;
    background-image: url(../images/hashVector.png);
    background-size: contain;
    width: 50%;
    height: 50%;
    z-index: -1;
}

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

.best_agency_content>h2 {
    font-size: 45px;
    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.6;
    margin-bottom: 30px;
}

.best_agency_content .theme_btn {
    width: fit-content;
}

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

.btn4 {
    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: 0.3s ease-in-out;
    position: relative;
    z-index: 0;
}

.btn4:hover {
    transition: 0.3s ease-in-out;
    /* box-shadow: rgb(135 87 5) 0px 6px 2px 0px; */
    /* transform: translate(0px, 3px); */
}

.btn4:after {
    content: "";
    z-index: -1;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #ffbc47;
    left: 0;
    top: 0;
    /* border-radius: 10px; */
    transition: 0.5s;
    border-radius: 5px;
}

.btn4:before {
    content: "";
    background: linear-gradient(45deg, #ffbc47, #ffbc47, #9f6705, #ffbc47, #ffbc47, #a76c04, #ffbc47, #784f06);
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 600%;
    z-index: -1;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    filter: blur(8px);
    animation: glowing 20s linear infinite;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
    opacity: 0;
}

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

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

.form_engagement_secc {
    background-color: #faf4ff;
    margin: 0 0px 50px;
}

.form_engagement_secc  .form_engage_wrpp>h2 {
    font-size: 46px;
    color: var(--theme);
}

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

.form_engagement_secc .form_engage_wrpp>p:last-child {
    margin: 0;
}

.btns2>li {
    width: 30%;
}

.btns2 {
    gap: 20px;
}

.btns2>li>a {
    width: 100% !IMPORTANT;
    display: flex;
    align-items: center;
    height: 50px;
    justify-content: center;
}

/*cta sec*/

.cta_secc {
    background-color: var(--theme);
    padding: 40px 0px;
}

.cta_secc h3 {
    font-size: 30px;
    color: #fff;
    text-align: center;
    font-weight: 500;
}

.cta_secc ul>li {
    width: 25%;
}

.cta_secc ul {
    margin: 0;
}

/*cta sec*/

.testimonials_secc a {
    width: fit-content;
    margin: 0 auto;
    margin-top: 50px;
}

.social_media_secc .theme-heading {
    text-align: left;
}

.social_media_secc {
    background-color: #faf4ff;
}

.social_media_secc .smm_wrpp_new {
    margin-top: 50px;
}

.social_media_secc .smm_wrpp_new a {
    display: flex;
    border: 1px solid #af69ee;
    padding: 15px 20px;
    align-items: center;
    margin-bottom: 20px;
    background-color: #fff;
    border-radius: 10px;
    font-size: 20px;
    color: var(--theme);
    font-weight: 500;
}

.social_media_secc .smm_wrpp_new a>span {
    display: block;
    margin-left: 14px;
    text-align: center;
}

.social_media_secc .smm_wrpp_new a>img {
    width: 55px;
}


/*ASTHETIC SECTION*/
.asthetic_box{
    padding: 40px;
    box-shadow: 0 0 20px #00000073;
    border-radius: 15px;
}
.asthetic_section{
    /* padding-left: 50px; */
}
.asthetic_box h5{
    font-size: 30px;
    font-weight: 700;
    color: #341950;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}
.asthetic_box h5 small{
    margin-right: 20px;
    padding-right: 20px;
    display: inline-block;
    border-right: 1px solid #af69ee;
}
.from_client h6{
    font-size: 20px;
    font-weight: 600;
    color: #000000;
}
.from_client p{
    font-size: 19px;
    color: #000;
    font-weight: 400;
    padding-right: 50px;
    line-height: 29px;
}
.from_client>p{
    margin-bottom: 40px;
}
.from_client ul{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.from_client ul li{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 10px;
    border:1px solid #af69ee;
    flex-direction: column;
    width: 250px;
    height: 150px;
    margin-right: 15px;
}

.from_client ul li h4{
    font-size: 25px;
    color:#341950;
    margin-bottom: 2px;
    font-weight: 700;
}
.from_client ul li>img {
    width: 100%;
    height: 148px;
    border-radius: 10px;
    object-fit: cover;
    object-position: top;
}
.from_client ul li p{
    font-size: 13px;
    font-weight: 400;
    color: #341950;
    text-align: center;
    padding: 0;
    margin: 0;
}
.asthetic_slider_main .slick-track{
    margin: 40px 0;
}
.asthetic_section .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%;
}
.asthetic_section .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%;
}
.asthetic_section .slick-next {
    /* right: -40px; */
    top: 44%;
    right: auto;
    left: -40px;
}
.asthetic_section .slick-prev {
    left: -40px;
    top: 54%;
}
.asthetic_section .slick-next:before{
    content: ''
}
.asthetic_section .slick-prev:before{
    content: ''
}
.asthetic_section .slick-list{
    padding-right: 20%;
}

.asthetic_section .theme-heading {
    text-align: left;
}

.asthetic_section .theme-heading>p {
    width: 80%;
}

/*ASTHETIC SECTION END*/

/*consumers_section*/

.consumers_content{
    padding: 40px 80px 10px;
    background: #341950;
    position: relative;
    border-radius: 6px;
}
.consumers_content::after{
    content: '';
    position: absolute;
    right: 0px;
    bottom: 0;
    background-image: url(../images/wave.png);
    background-size: contain;
    height: 30%;
    z-index: 0;
    width: 10%;
    background-repeat: no-repeat;
}
.consumers_content h4{
    font-size: 40px;
    font-weight: 600;
    color: #fff;
}
.consumers_content p{
    font-size: 20px;
    color: #fff;
    line-height: 30px;

}
.consumers_content form{
    width: 100%;
    position: relative;
    margin: 20px auto 30px;
    border-radius: 5px;
    overflow: hidden;
}
.consumers_content form input{
    width: 100%;
    border-radius: 5px;
    height: 50px;
    border: none;
    padding-left: 15px;
    color: #000;
}

.consumers_content form input::placeholder{
    color: #494949;
    font-size: 16px;
}
.consumers_content form button{
    padding: 10px 40px;
    height: 100%;
    border:none;
    background-color: #af69ee;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    width: 100%;
    border-radius: 5px;
}
.consumers_content h6{
    font-size: 21px;
    font-weight: 600;
    position: relative;
    color: #fff;
    display: inline-block;
}
.consumers_content h6::after{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 2px;
    width: 100%;
    background: #fff;
}

/*consumers_section*/

.social_media_secc .smm_wrpp_new a {
    transition: 0.3s ease-in-out;
}

.social_media_secc .smm_wrpp_new a:hover {
    transition: 0.3s ease-in-out;
    background-color: var(--theme);
    color: #fff;
}

.social_media_secc .smm_wrpp_new a:hover img {
    transform: scale(1.2);
    transition: 0.2s ease-in-out;
    filter: drop-shadow(-4px 1px 0px #fff);
}

.social_media_secc .smm_wrpp_new a img {
    transition: 0.2s ease-in-out;
}

@keyframes float {
    0% {
        transform: translatey(0px);
    }
    50% {
        transform: translatey(-10px);
    }
    100% {
        transform: translatey(0px);
    }
}

.social_media_banner_img>img {
    animation: 2.3s ease-in-out float infinite;
}

.smm-banner .social_media_banner_content p {
    font-size: 18px;
}

.smm-banner .social_media_banner_content ul>li {
    display: flex;
    align-items: center;
    gap: 20px;
}

.smm-banner .social_media_banner_content ul>li>span {
    color: #fff;
    font-family: 'Roboto';
    font-size: 20px;
    margin-bottom: 13px;
    font-weight: 300;
}

.smm-banner .social_media_banner_content ul>li>img {
    filter: invert(88%) sepia(71%) saturate(7289%) hue-rotate(286deg) brightness(178%) contrast(195%);
    margin-top: -9px;
}

.smm-banner .social_media_banner_content h2 {
    font-size: 37px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.asthetic_box {
    position: relative;
}

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

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

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

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

/*SOCIAL MEDIA MARKETING end*/

/*pop up*/

.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: 20px;
}

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

/*pop up*/


.new_editing .theme-heading>h2 {
    font-size: 40px;
}

.new_editing .theme-heading {
    text-align: left;
}

.new_editing .theme-heading>p {
    font-size: 18px;
}

.new_editing .bottom_counter_wrpp>span {
    font-size: 23px;
}

.new_editing .bottom_counter_wrpp>h3 {
    font-size: 14px;
}

.new_editing .bottom_counter_wrpp {
    font-size: 23px;
    height: 160px;
}

.ageny_wrpp .ageny_text_wrpp>form>input {
    width: 100%;
    height: 50px;
    margin-bottom: 13px;
    border: 0;
    border-radius: 5px;
    background-color: #eeeeee;
    padding: 15px;
}

.new_editing .ageny_wrpp .ageny_text_wrpp>form>button {border: 0;}

/*new footer*/

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

.new_footer>.container {
    transform: scale(1);
}

.new_footer h2 {
    font-size: 35px;
    font-weight: 500;
    margin-bottom: 10px;
}

.new_footer p {
    font-size: 16px;
    color: #fff;
    font-family: 'Poppins';
    font-weight: 400;
    line-height: 1.5;
}

.new_footer form {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.new_footer form>input {
    width: 100%;
    height: 50px;
    padding: 10px;
    border: 0;
    border-radius: 5px;
}

.new_footer form>button {
    border: 0;
    width: 30%;
    height: 50px;
    padding: 0 30px;
}

.new_footer .new_footer_bottm img {
    /* width: 100%; */
    filter: brightness(0) invert(1);
    height: 90px;
    object-fit: contain;
}

.new_footer .new_footer_bottm ul {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 30px;
}

.new_footer .new_footer_bottm ul>li>a {
    color: #fff;
    font-family: 'Poppins';
    font-size: 17px;
}

.new_footer .new_footer_bottm ul:last-child {
    margin: 0;
}

.new_footer .new_footer_bottm ul>li>a:hover {
    text-decoration: underline;
}

.new_footer .new_footer_bottm {
    border-top: 1px solid #fff;
    margin-top: 30px;
    padding-top: 30px;
}

.new_footer .text-left {
    text-align: end;
}

/*new footer*/

.custom_popop_new form select {
    background-size: 22px;
    background-position: 96%;
}

.custom_popop_new form textarea {
    width: 100%;
    height: 100px;
    resize: none;
    padding: 15px 30px;
    background-color: #f2f2f2;
    margin-bottom: 7px;
    border: 0;
    border-radius: 5px;
}


/* new header design */

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

header .dropdown-menu {
    width: 700px;
    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>.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;
}

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

/* new header design */