/*------------------------------------------------------------------
[Table of contents]

1. Body
2. Header / .header-con
3. Banner / .banner-con
5. About Us / .about-us-con
6. Our Creativity / .our-creativity-con
7. Portfolio / .portfolio-con
8. Our Expertise / .our-expertise-con
9. Digital Creative Agency / .digital-creative-agency-con
11. Testimonials / .testimonials-con
12. Partners / .partners-con
13. Signup Newsletter / .signup-newsletter-con
14. Footer / .footer-con
*/
/*------------------------------------------------------------------
# [Color Codes]

# primary--color: #d933b2;
# black--color: #000000;
# secondary--color: #ffffff;
# grey-color: #323131;
# text-color: #45455d;
# purple-color: #8f3fd3;
# dark-blue-color: #00002b;
# light-blue-color: #f3faff;
# light-purple-bg: #9a53d7;
# yellow-color: #ffde00;
# stroke-color: #97b7cd;

*/
/*------------------------------------------------------------------
# [Typography]

Body copy: "Barlow", sans-serif;
Headings: "Barlow", sans-serif;
*/


@import url('css2.css');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

a,
button input {
    outline: none;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

figure {
    margin: 0;
}

body {
    font-size: 20px;
    line-height: 31px;
    font-weight: 400;
    color: var(--text-color);
    font-family: "Barlow", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
span {
    font-family: "Barlow", sans-serif;
}

:root {
    --primary--color: #d933b2;
    --black--color: #000000;
    --secondary--color: #ffffff;
    --grey-color: #323131;
    --text-color: #45455d;
    --purple-color: #8f3fd3;
    --dark-blue-color: #00002b;
    --light-blue-color: #f3faff;
    --light-purple-bg: #9a53d7;
    --yellow-color: #ffde00;
    --stroke-color: #97b7cd;

}

/* BG OUTER WRAPPER */
.bg-outer-wrapper {
    height: 887px;
}

.bg-outer-wrapper::after {
    content: "";
    right: 0;
    top: 0;
    width: 781px;
    height: 887px;
    position: absolute;
    background-color: var(--purple-color);
    background-size: cover;
    background-repeat: no-repeat;
    /* z-index: 0; */
}

.header-con {
    z-index: 3;
    padding: 40px 0 0;
}

/* Style the navigation menu */
.topnav {
    /* overflow: hidden; */
    position: relative;
}

/* Hide the links inside the navigation menu (except for logo/home) */
.topnav #myLinks {
    display: none;
    right: 0;
    top: 43px;
    padding: 10px 0;
    margin: 0;
    background-color: var(--secondary--color);
    border: 0;
    width: 230px;
    margin-top: 10px;
    box-shadow: 0px 0px 100px rgb(0 0 0 / 15%);
    border-radius: 10px;
    transition: ease-in-out 0.6s;
}

/* Style navigation menu links */
.topnav a {
    color: var(--primary--color);
    text-decoration: none;
    font-size: 18px;
    display: block;
    padding: 7px 25px;
    line-height: 26px;
    transition: ease-in-out 0.6s;
}

.topnav a:hover {
    background-color: var(--purple-color);
    color: var(--secondary--color);
}

/* Style the hamburger menu */
.topnav a.icon {
    display: block;
    margin: 0;
    padding: 0;
}

.topnav a.icon:hover {
    background-color: transparent;
}

.topnav a.navbar-brand {
    padding: 0;
    margin: 0;
}

.topnav a.navbar-brand:hover {
    background-color: transparent;
}

/* DROPDOWN MENU */
.dropdown-menu {
    width: 230px;
    border: none;
    border-top: 1px solid var(--primary--color);
    border-bottom: 1px solid var(--primary--color);
    border-radius: 0;
}

.dropdown-toggle::after {
    position: absolute;
    top: 19px;
}

/*  */
/* HEADER SECTION */
/* BACK TO TOP BUTTON */
#back-to-top-btn {
    display: none;
    position: fixed;
    bottom: 60px;
    right: 60px;
    z-index: 99;
    font-size: 18px;
    border: none;
    background-color: var(--purple-color);
    color: white;
    cursor: pointer;
    border-radius: 10px;
    width: 80px;
    height: 80px;
    -webkit-animation: spineer 2s infinite;
    animation: spineer 2s infinite;
}

#back-to-top-btn:focus {
    outline: none;
}

@-webkit-keyframes spineer {
    from {
        box-shadow: 0 0 0 0 rgb(143, 63, 211, .99);
    }

    to {
        box-shadow: 0 0 0 45px rgb(0, 0, 43, .01);
    }
}

@keyframes spineer {
    from {
        box-shadow: 0 0 0 0 rgb(143, 63, 211, .99);
    }

    to {
        box-shadow: 0 0 0 45px rgb(0, 0, 43, .01);
    }
}

#back-to-top-btn::after {
    font-size: 18px;
    font-weight: 600;
    content: "\f062";
    line-height: 50px;
    color: var(--secondary--color);
    font-family: "Font Awesome 5 free";
}


#back-to-top-btn:hover {
    cursor: pointer;
}

/* BACK TO TOP BUTTON */
/* LOADER SECTION */
.loader-mask {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: fixed;
    z-index: 99999;
    background-color: #fff;
}

.loader {
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    font-size: 0;
    position: absolute;
    text-indent: -9999em;
    display: inline-block;
    margin: -25px 0 0 -25px;
    color: var(--primary--color);
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}

.loader div {
    top: 0;
    left: 0;
    opacity: .5;
    float: none;
    width: 50px;
    height: 50px;
    position: absolute;
    border-radius: 50%;
    display: inline-block;
    background-color: var(--primary--color);
    -webkit-animation: ballPulseDouble 2s ease-in-out infinite;
    animation: ballPulseDouble 2s ease-in-out infinite;
}

.loader div:last-child {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}

@-webkit-keyframes ballPulseDouble {

    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes ballPulseDouble {

    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

/* LOADER SECTION */

/* BANNER SECTION */
.bg-outer-wrapper .vector3 {
    top: 0;
    left: 0;
}

.bg-outer-wrapper .vector2 {
    bottom: -53px;
    left: 0;
}

.banner-con .banner-img-con .vector1 {
    right: -306px;
    top: -56px;
}

.banner-con .banner-img-con {
    z-index: 1;
}

.banner-content-con .vector-line {
    right: 50.7%;
    top: -7%;
}

.banner-content-con .vector4 {
    right: 61%;
    top: -50px;
}

.banner-content-con .vector5 {
    left: 0;
    bottom: 45%;
}

.banner-con .banner-content-con p {
    font-size: 24px;
    line-height: 40px;
    color: #323131;
    font-weight: 300;
    margin-bottom: 24px;
}

/* ABOUT SECTION STYLING */
.blue-box {
    padding: 52px 27px 52px 42px;
    border-bottom: 3px solid var(--primary--color);
    background-color: var(--light-blue-color);
    transition: ease-in-out 0.6s;
}

.blue-box img {
    transition: ease-in-out 0.6s;
}

.blue-box:hover img {
    transform: translateY(-3px);
}

.about-us-con .col-lg-6.col-md-6 {
    display: flex;
}

.about-us-con .blue-box {
    width: 100%;
}

.heading-title-con p {
    /* margin-bottom: 65px; */
    margin-bottom: 55px;
}

.about-us-con .heading-title-con p {
    margin-bottom: 70px;
}

.heading-title-con h2 {
    margin-bottom: 20px;
}

.blue-box img {
    margin-bottom: 27px;
}

.blue-box h3 {
    color: var(--dark-blue-color);
    margin-bottom: 10px;
}

.blue-box p {
    margin-bottom: 16px;
}

.blue-box a {
    font-size: 18px;
    line-height: 18px;
    font-weight: 500;
}

.blue-box a:hover {
    color: var(--purple-color);
    text-decoration: none;
}

.blue-box:hover a {
    color: var(--secondary--color);
}

/* OUR CREATIVITY SECTION STYLING */
.our-creativity-con .elipse {
    left: -59px;
    top: -48px;
}

.our-creativity-con .vector6 {
    bottom: 140px;
    left: -64px;
}

.our-creativity-con img.creativity-img {
    z-index: 1;
    position: relative;
}

.our-creativity-con h2 {
    margin-bottom: 18px;
}

.our-creativity-con .creativity-content-con a {
    font-weight: 700;
    margin-top: 16px;
    display: block;
    transition: ease-in-out 0.6s;
}

.our-creativity-con .pink-box {
    padding: 46px 48px 40px;
    background-color: var(--primary--color);
    margin-top: 60px;
    width: 555px;
    height: 287px;
    position: absolute;
    right: 18px;
    z-index: 1;
}

.our-creativity-con .pink-box figure {
    width: 70px;
    height: 70px;
    background-color: var(--secondary--color);
    border-radius: 100px;
    text-align: center;
    line-height: 65px;
    margin-bottom: 16px;
}

.our-creativity-con .vector7 {
    bottom: 0;
    right: 0;
}

.our-creativity-con .creativity-content-con a i {
    font-size: 16px;
}

.our-creativity-con .creativity-content-con a:hover {
    text-decoration: none;
    color: var(--light-blue-color) !important;
}

.our-creativity-con .pink-box h3 {
    margin-bottom: 11px;
}

.creativity-content-con p {
    font-weight: 300;
    margin-bottom: 10px;
}

/* PORTFOLIO SECTION STYLING */
.portfolio-con .nav-tabs {
    border-bottom: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 64px;
}

.portfolio-con .nav-tabs a {
    margin: 0 28px;
    font-size: 20px;
    font-weight: 500;
    color: var(--dark-blue-color);
    text-decoration: none;
}

.portfolio-con .nav-tabs li:has(a.active) {
    background-color: var(--primary--color);
    padding: 8px;
    border-radius: 100px;
}

.portfolio-con .nav-tabs li:has(a.active) a {
    color: var(--secondary--color);
    text-decoration: none;
}

.portfolio-con .portfolio-outer-con {
    display: grid;
    grid-template-columns: 30.95% 38.10% 30.95%;
    gap: 2px;
}

.portfolio-con .tabs-box {
    margin-bottom: 60px;
}

.portfolio-con .portfolio-outer-con .col-lg-12 {
    margin-bottom: 2px;
}

.portfolio-con .container-fluid {
    overflow: hidden;
}

/* OUR EXPERTISE SECTION STYLING */

.our-expertise-con .progress_list .choose-measure .text {
    font-size: 18px;
    line-height: 18px;
    font-weight: 500;
    color: var(--dark-blue-color);
    margin-bottom: 15px;
    display: inline-block;
}

.our-expertise-con .progress_list {
    width: 501px;
}

.our-expertise-con .progress_list .choose-measure .percentage {
    float: right;
    position: relative;
    right: -5px;
}

.our-expertise-con .progress_list .choose-measure .percentage span,
.our-expertise-con .progress_list .choose-measure .percentage .plus {
    font-size: 18px;
    line-height: 20px;
    font-weight: 400;
    color: var(--text-color);
}

.our-expertise-con .progress_list .choose-measure .progress {
    overflow: visible;
    height: 7px;
    margin-bottom: 10px;
    background-color: var(--light-blue-color);
    border-radius: 3.5px;
}

.our-expertise-con .progress_list .choose-measure .progress-bar {
    float: left;
    height: 100%;
    font-size: 10px;
    line-height: 14px;
    text-align: center;
    animation: progress-animation 5s ease-in-out;
    border-radius: 3.5px;
    position: relative;
    background-color: var(--primary--color);

}

.our-expertise-con .progress_list .choose-measure .progress-bar.bar1 {
    width: 70%;
}

.our-expertise-con .progress_list .choose-measure .progress-bar.bar2 {
    width: 60%;
}

.our-expertise-con .progress_list .choose-measure .progress-bar.bar3 {
    width: 80%;
}

.our-expertise-con .progress_list .choose-measure .progress-bar.bar4 {
    width: 65%;
}

.our-expertise-con .choose-measure:last-child .progress {
    margin-bottom: 0 !important;
}

@keyframes progress-animation {
    0% {
        width: 0%;
    }
}

.our-expertise-con p {
    margin-bottom: 26px;
}

.our-expertise-con .expertise-grid {
    display: grid;
    grid-template-columns: 48.5% 48.5%;
    gap: 30px 30px;
}

.our-expertise-con .expertise-grid .blue-box figure {
    background-color: var(--secondary--color);
    border-radius: 100px;
    width: 124px;
    line-height: 114px;
    height: 124px;
    text-align: center;
    margin: 0 auto 14px;
}

.our-expertise-con .expertise-grid .blue-box {
    border-bottom: none;
    padding: 36px;
    text-align: center;
    width: auto;
    height: 287px;
}

.our-expertise-con .expertise-grid .blue-box span {
    color: var(--dark-blue-color);
    font-size: 38px;
    line-height: 38px;
    margin-bottom: 5px;
}

.expertise-grid .blue-box figure img {
    margin-bottom: 0;
}

.our-expertise-con .vector8 {
    position: absolute;
    right: -43px;
    z-index: -1;
    top: 0;
}

.margin-tp {
    margin-top: 38px;
}

.margin-tp-ng {
    margin-top: -38px;
}

/* DIGITAL CREATIVE AGENCY SECTION STYLING */
.digital-creative-agency-con h2 {
    margin-bottom: 38px;
}

.digital-creative-agency-con .digital-content-box {
    background-color: var(--light-purple-bg);
    padding: 64px 50px 69px 101px;
    width: 529px;
    margin-left: 10px;
    margin-top: 2px;
}

.digital-creative-agency-con img.white-square {
    position: absolute;
    z-index: 1;
    bottom: 46px;
    left: -4px;
}

.digital-creative-agency-con img.agency-img {
    z-index: 2;
}

.digital-creative-agency-con .digital-content-box p {
    font-weight: 300;
    margin-bottom: 14px;
}

.digital-creative-agency-con .digital-content-box ul li {
    padding-left: 30px;
    font-size: 18px;
    line-height: 34px;
}

.digital-creative-agency-con .digital-content-box ul {
    margin-bottom: 12px;
}

.digital-creative-agency-con .digital-content-box ul li i {
    position: absolute;
    left: 0;
    top: 9px;
    color: var(--yellow-color)
}

.digital-creative-agency-con .elipse2 {
    right: 100px;
    bottom: 334px;
}

.digital-creative-agency-con .vector9 {
    left: -9px;
    top: 89px;
}

.digital-creative-agency-con .digital-content-box p.last-p {
    margin-bottom: 30px;
}

/* TESTIMONIALS SECTION STYLING */
.testimonials-con .light-blue-box {
    padding: 65px 66px 60px;
    border-bottom: 4px solid var(--primary--color);
}

.testimonials-con .testimonial-img img {
    border-radius: 100%;
}

.testimonials-con .testimonial-img figure {
    text-align: center;
}

.testimonials-con .testimonial-img::after {
    content: "";
    left: 0;
    right: 0;
    margin: auto;
    top: 0;
    z-index: -1;
    width: 147px;
    height: 147px;
    position: absolute;
    background-image: url("../image/elipse3.png");
}

.testimonials-con .vector8 {
    top: 104px;
    left: 353px;
    z-index: -1;
}

.testimonials-con .carousel-inner {
    padding-top: 0;
}

.testimonials-con .testimonial-img {
    padding-top: 24px;
}

.testimonials-con .review-name {
    font-size: 22px;
    font-weight: bold;
    color: var(--primary--color);
    margin-bottom: 3px;
}

.testimonials-con .carousel .carousel-indicators {
    right: unset;
    text-align: center;
    width: 290px;
    margin: 0 auto;
    bottom: 63px;
}

.testimonials-con .carousel .carousel-indicators li {
    border-radius: 100px;
    width: 20px;
    height: 20px;
    background-color: transparent;
    margin: 5px;
    border: 1px solid var(--stroke-color);
    cursor: pointer;

}

.testimonials-con .carousel .carousel-indicators li span {
    display: block;
    background-color: transparent;
    width: 20px;
    height: 20px;
    border-radius: 100px;
    cursor: pointer;

}

.testimonials-con .carousel .carousel-indicators li.active {
    border: 1px solid var(--primary--color);
    background-color: var(--primary--color);
}

.testimonials-con .carousel .carousel-indicators li:first-child {
    margin-left: 0;
}

.testimonials-con .carousel .carousel-indicators li:last-child {
    margin-right: 0;
}

.testimonials-con .quote-img {
    position: relative;
    top: 0;
    margin-bottom: 18px;
}

/* PARTNERS SECTION STLYING */
.partners-con ul li figure img {
    transition: ease-in-out 0.6s;
}

.partners-con ul li figure img:hover {
    transform: translateY(-3px);
}

/* SIGNUP NEWSLETTER SECTION STLYING */
.signup-newsletter-con .vector10 {
    top: 108px;
    right: 0;
}

.signup-newsletter-con .elipse4 {
    bottom: 206px;
    left: 220px;
}

.signup-newsletter-con .singup-newsletter-inner-con {
    background-image: url("../image/round-shape.png");
    background-repeat: no-repeat;
    background-position: top center;
}

.signup-newsletter-con .singup-newsletter-inner-con h2 {
    margin-bottom: 20px;
}

.signup-newsletter-con .singup-newsletter-inner-con p {
    margin-bottom: 33px;
}

.signup-newsletter-con .singup-newsletter-inner-con form {
    padding-left: 5px;
}

.singup-newsletter-inner-con {
    padding-top: 194px;
    padding-bottom: 118px;
}

.signup-newsletter-con .singup-newsletter-inner-con form input {
    height: 58px;
    width: 328px;
    border-radius: 100px;
    border: none;
    padding: 18px 28px;
    margin-right: 11px;
    line-height: 15px;
}

.signup-newsletter-con .singup-newsletter-inner-con form button {
    background-color: var(--primary--color);
    padding: 0;
    min-width: 176px;
    height: 58px;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    line-height: 54px;
    text-decoration: none;
    color: var(--secondary--color);
    border: none;
    box-shadow: none;
    border-radius: 100px;
    cursor: pointer;
    border: 1px solid transparent;
    display: inline-block;
}

.signup-newsletter-con .singup-newsletter-inner-con form button:hover {
    background-color: transparent;
    color: var(--secondary--color);
    transition: ease-in-out 0.6s;
    border: 1px solid var(--secondary--color);
}

.signup-newsletter-con .singup-newsletter-inner-con form input::placeholder {
    font-size: 18px;
    line-height: 10px;
    color: var(--text-color);
    font-weight: 300;
}

.signup-newsletter-con .singup-newsletter-inner-con form input:focus {
    box-shadow: inset 0 1px 1px rgb(22 57 43 / 8%), 0 0 8px rgb(217 51 178 / 60%);
    border: 1px solid rgb(217, 51, 178);
    outline: none;
}

/* FOOTER ECTION STYLING */
.footer-con {
    padding-top: 40px;
    padding-bottom: 40px;
}

.footer-con ul.footer-links li {
    padding: 0 22px;
    line-height: 18px;
    border-left: 1px solid #fff;
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 0;
    color: var(--secondary--color);
}

.footer-con ul.footer-links {
    margin-bottom: 19px;
}

.footer-con ul.footer-links li a {
    font-size: 18px;
    font-weight: 300;
    line-height: 18px;
    color: var(--secondary--color);

}

.footer-con p {
    margin-bottom: 19px;
    font-size: 16px;
    font-weight: 300;
    line-height: 20px;
}

.footer-con ul.social-icons li i {
    color: var(--secondary--color);
    padding: 0 8px;
    font-size: 16px;
    transition: ease-in-out 0.6s;
}

.footer-con ul.social-icons li i:hover {
    transform: translateY(-3px);
}

/* SUB BANNER SECTION */
.sub-outer-wrapper {
    height: 732px;
}

.sub-outer-wrapper::after {
    content: "";
    right: 0;
    top: 0;
    width: 781px;
    height: 732px;
    position: absolute;
    background-color: var(--primary--color);
    background-size: cover;
    background-repeat: no-repeat;
    /* z-index: 0; */
}

.sub-outer-wrapper .vector3 {
    top: 0;
    left: 0;
}

.sub-outer-wrapper .vector2 {
    bottom: 45px;
    left: 0;
}

.sub-outer-wrapper .vector1 {
    right: -45px;
    top: -40px;
    z-index: 1;
}

.sub-outer-wrapper .header-con {
    padding-bottom: 40px;
}

.sub-banner-con .sub-banner-img-con img.sub-img {
    z-index: 1;
}

.sub-banner-con .sub-banner-img-con {
    text-align: right;
}

.sub-banner-con .sub-content-con p {
    font-size: 24px;
    line-height: 35px;
}

/* Breadcrumb */
.breadcrumb-item+.breadcrumb-item::before {
    color: var(--purple-color);
    font-size: 20px;
}

.breadcrumb-item.active {
    color: var(--primary--color);
    font-size: 20px;
    font-weight: 500;
}

.breadcrumb-item {
    font-size: 20px;
    line-height: 20px;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    display: flex;
    align-items: center;

}

.breadcrumb-item a {
    text-decoration: none;
    color: var(--primary--color);
    font-size: 20px;
    font-weight: 500;
}

.breadcrumb-con {
    margin-bottom: 21px;
}

.breadcrumb-item a:hover {
    color: var(--purple-color);
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "";
    display: inline-block;
    width: 9px;
    height: 12px;
    background-image: url('../image/separator.png');
    background-size: contain;
    background-repeat: no-repeat;
    padding: 0;
    margin: 0 13px;
}

.sub-content-con .vector4 {
    left: -65px;
    top: -23px;
}

.digital-stuff-con ul li {
    font-size: 18px;
    line-height: 34px;
    padding-left: 25px;
}

.digital-stuff-con ul li i {
    position: absolute;
    top: 9px;
    left: 0;
    font-size: 18px;
}

.digital-stuff-con ul {
    margin-bottom: 20px;
}

.digital-stuff-con .digital-img1 {
    z-index: 1;
    top: 35px;
    left: 35px;
}

.digital-stuff-con .right-con {
    text-align: right;
}

.digital-stuff-con .digital-img2 {
    z-index: 1;
    top: 35px;
    right: 35px;
}

.digital-stuff-con .pink-square {
    right: 15px;
}

/* SERVICES PAGE STYLING */
.service-about-con .blue-box {
    margin-bottom: 29px;
}

.blue-box:hover {
    background-color: var(--primary--color);
}

.blue-box:hover h3,
.blue-box:hover p,
.blue-box:hover h4 {
    color: var(--secondary--color);
}

.blue-box:hover img {
    filter: grayscale(100%) brightness(1000%);
}

/* more services con */
.more-services-con .vector9 {
    left: 0;
}

.more-services-con h2 {
    margin-bottom: 35px;
}

.more-services-con ul.nav-tabs li figure {
    background-color: var(--light-purple-bg);
    width: 122px;
    height: 122px;
    line-height: 120px;
    border-radius: 100%;
    text-align: center;
    margin-bottom: 20px;
}

.more-services-con .nav-tabs .nav-link {
    color: var(--secondary--color);
    border: none;
    padding: 0 20px;
    position: relative;
}

.more-services-con .nav-tabs .nav-link.active {
    color: var(--secondary--color);
    background-color: transparent;
    border: none;
}

.more-services-con .nav-tabs .nav-link.active figure {
    background-color: var(--primary--color);

}

.more-services-con .nav-tabs {
    border-bottom: 0;
    margin-bottom: 0;
}

.more-services-con .nav-tabs .nav-link:hover {
    border: none;
}

.more-services-con ul.nav-tabs::after {
    content: "";
    top: 65px;
    left: 0;
    right: 0;
    margin: auto;
    width: 537px;
    height: 1px;
    position: absolute;
    background-image: url(../image/dotted-line.png);
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 0;
}

.more-services-con .nav-tabs .nav-item {
    z-index: 1;
}

.more-services-con .tab-content {
    background-color: var(--secondary--color);
    padding: 35px 54px 35px 43px;
    margin-top: 42px;
}

.more-services-con .tab-content p {
    position: relative;
    padding-left: 19px;
}

.more-services-con .tab-content p::after {
    content: "";
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 2px;
    height: 76px;
    position: absolute;
    background-image: url(../image/pink-vertical-line.png);
    background-size: cover;
    background-repeat: no-repeat;
}

.more-services-con .bottom-right {
    right: 0;
    bottom: 0;
}

/* .more-services-con .tab-content::before {
    content: '';
    width: 24px;
    height: 12px;
    position: absolute;
    background-image: url(../image/nav-node.png);
    top: -12px;
    left: 19%;
    transition: all 0.3s ease-in-out;
} */

.more-services-con .nav-tabs .nav-link.active::before {
    left: 0;
    right: 0;
    bottom: -42px;
    margin: auto;
    content: '';
    width: 24px;
    height: 12px;
    position: absolute;
    background-image: url(../image/nav-node.png);
    transition: all 0.3s ease-in-out;
}

/* STATS SECTION STYLING */
.stats-con .blue-box figure {
    background-color: var(--secondary--color);
    border-radius: 100px;
    width: 124px;
    line-height: 114px;
    height: 124px;
    text-align: center;
    margin: 0 auto 14px;
}

.stats-con .blue-box span {
    color: var(--dark-blue-color);
    font-size: 38px;
    line-height: 38px;
    margin-bottom: 5px;
}

.stats-con .blue-box:hover,
.expertise-grid .blue-box:hover {
    background-color: var(--light-blue-color);
}

.stats-con .blue-box:hover img,
.expertise-grid .blue-box:hover img {
    filter: unset;
}

.stats-con .blue-box img {
    margin-bottom: 0;
}

.stats-con .blue-box:hover p,
.expertise-grid .blue-box:hover p {
    color: var(--text-color);
}

.stats-con .var-right {
    right: 354px;
    top: -39px;
}

.stats-con .var-left {
    left: 354px;
    bottom: 114px;
}

.stats-con .blue-box {
    border-bottom: none;
}

/* creative stuff section */
.creative-stuff-con .creative-stuff-content {
    margin-bottom: 65px;
}

.creative-stuff-con .img-box {
    background-color: var(--primary--color);
    width: 475px;
    height: 266px;
    padding: 35px 40px;
    bottom: -133px;
    left: 65px;
}

.creative-stuff-con .img-box h3.special-font {
    font-size: 32px;
    line-height: 38px;
    margin-bottom: 18px;
}

.services-we-provide-con .bottom-right {
    right: 0;
    bottom: 0;
}

.services-we-provide-con .vector9 {
    left: 0;
}

.services-we-provide-con .provider-box {
    background-color: var(--light-purple-bg);
    padding: 19px 34px;
    width: 340px;
    height: 87px;
    margin-bottom: 30px;
    position: relative;
    margin-left: 10px;
    transition: ease-in-out 0.6s;

}

.services-we-provide-con .provider-box::after {
    content: "";
    left: -8px;
    width: 2px;
    height: 87px;
    position: absolute;
    background-image: url(../image/line-1.png);
    background-size: cover;
    background-repeat: no-repeat;
}

.services-we-provide-con h2 {
    margin-bottom: 48px;
}

.services-we-provide-con .provider-box:hover {
    background-color: var(--primary--color);
}

.services-we-provide-con .provider-box:hover::after {
    filter: grayscale(100%) brightness(1000%);
}

/* working process */
.working-process-inner span {
    font-size: 46px;
    font-weight: 700;
    background-color: var(--primary--color);
    text-align: center;
    width: 95px;
    height: 95px;
    line-height: 92px;
    border-radius: 100px;
    margin-bottom: 0;
    flex-shrink: 0;
    color: var(--secondary--color);
}

.digital-stuff-con .working-process-inner li {
    display: flex;
    margin-bottom: 24px;
    padding-left: 0;
}

.working-process-inner .sub-info-inner {
    margin-left: 33px;
}

.working-process-con h2 {
    margin-bottom: 35px;
}

.working-process-con .working-process-inner h4 {
    font-weight: 700;
    font-size: 25px;
    line-height: 25px;
    margin-bottom: 8px;
    color: var(--dark-blue-color);
}

.working-process-inner p {
    font-size: 20px;
    line-height: 31px;
}

.digital-stuff-con .working-process-inner::after {
    content: "";
    left: 48px;
    top: 80px;
    width: 1px;
    height: 232px;
    position: absolute;
    background-image: url(../image/vertical-dotted-line.png);
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 0;
}

/* OUR TEAM SECTION STYLING */
.our-team-con h2 {
    margin-bottom: 50px;
}

.white-box {
    background-color: var(--secondary--color);
    padding: 45px 48px;
    transition: ease-in-out 0.6s;
}

.our-team-con .white-box:hover {
    background-color: var(--primary--color);
}

.our-team-con .white-box:hover img {
    transform: translateY(-2px);
}

.our-team-con .white-box:hover h4,
.our-team-con .white-box:hover p {
    color: var(--secondary--color);
}

.our-team-con .white-box img {
    border-radius: 100%;
    margin-bottom: 24px;
    transition: ease-in-out 0.6s;
}

.our-team-con .white-box h4 {
    color: var(--dark-blue-color);
}

.our-team-con .white-box i {
    color: var(--secondary--color);
    background-color: var(--primary--color);
    width: 56px;
    height: 56px;
    line-height: 56px;
    border-radius: 100%;
    text-align: center;
    position: absolute;
    margin: 0 auto;
    transform: translate(-50%, 50%);
    bottom: 0;
    transition: ease-in-out 0.6s;
}

.our-team-con .var1 {
    margin-top: 50px;
}

.our-team-con .white-box i:hover {
    background-color: var(--purple-color);
}

.our-team-con .white-box:hover i {
    background-color: var(--purple-color);
}

/* CONTACT PAGE STYLING */
.contact-us-con .blue-box {
    width: 100%;
}

.contact-us-con .blue-box h4 {
    margin-bottom: 20px;
}

.contact-us-con .blue-box a {
    color: var(--text-color);
    font-size: 20px;
    line-height: 30px;
    text-decoration: none;
    font-weight: 300;
}

.contact-us-con .blue-box:hover a {
    color: var(--secondary--color);
}

.contact-us-con .col-lg-4.col-md-4 {
    display: flex;
}

.send-us-msg-con iframe {
    content: "";
    right: 0;
    width: 50%;
    height: 758px;
    position: absolute;
}

.send-us-msg-con .msg-inner-content form ul li {
    float: left;
    width: 47.5%;
    margin-right: 16px;
    margin-bottom: 19px;
}

.send-us-msg-con .msg-inner-content form ul li input,
.send-us-msg-con .msg-inner-content form ul li textarea {
    width: 100%;
    padding: 12px 22px 18px;
    background-color: var(--secondary--color);
    border: none;
    height: 55px;
    border-radius: 27.5px;
}

.send-us-msg-con .msg-inner-content form ul li input::placeholder,
.send-us-msg-con .msg-inner-content form ul li textarea::placeholder {
    font-size: 16px;
    line-height: 16px;
    color: var(#555555);
}

.send-us-msg-con .msg-inner-content h2 {
    margin-bottom: 26px;
}

.send-us-msg-con .msg-inner-content form ul li textarea {
    height: 111px;
    padding: 15px 22px;
    border-radius: 20px;
}

.send-us-msg-con .msg-inner-content form ul li:nth-child(2),
.send-us-msg-con .msg-inner-content form ul li:nth-child(4) {
    margin-right: 0;
}

.send-us-msg-con .msg-inner-content form ul li.textarea-outer-con {
    width: 525px;
}

.send-us-msg-con .msg-inner-content form .pink-btn button {
    width: 206px;
    border: 1px solid transparent;
}

.send-us-msg-con .msg-inner-content form .pink-btn button:hover {
    background-color: transparent;
    color: var(--secondary--color);
    transition: ease-in-out 0.6s;
    border: 1px solid var(--secondary--color);
}

.send-us-msg-con .msg-inner-content form input:focus,
.send-us-msg-con .msg-inner-content form textarea:focus {
    box-shadow: inset 0 1px 1px rgb(22 57 43 / 8%), 0 0 8px rgb(217 51 178 / 60%);
    border: 1px solid rgb(217, 51, 178);
    outline: none;
}

/* BLOG PAGE NEW BLOG SECTION STYLING */
.new-sub-blog-con .new-blog-box .blog-white-con {
    background-color: var(--secondary--color);
    padding: 33px 33px 0;
    text-align: center;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 50%);
    bottom: 0;
    height: 184px;
    width: 466px;
}

.new-sub-blog-con .new-blog-box .blog-white-con span {
    color: var(--purple-color);
    font-weight: 300;
}

.new-sub-blog-con .new-blog-box .blog-white-con h3 a {
    font-weight: 600;
    color: var(--dark-blue-color);
    line-height: 36px;
    font-size: 30px;
}

.new-sub-blog-con .new-blog-box .blog-white-con h3 a:hover {
    color: var(--primary--color);
}

.new-sub-blog-con .new-blog-box .blog-white-con a {
    font-size: 18px;
    font-weight: 500;
}

.new-sub-blog-con .new-blog-box .blog-white-con a:hover {
    color: var(--purple-color);
    text-decoration: none;
}

.new-sub-blog-con .new-blog-box {
    margin-bottom: 136px;
    transition: ease-in-out 0.6s;
}

.new-sub-blog-con .new-blog-box img {
    transition: ease-in-out 0.6s;
}

.new-sub-blog-con .new-blog-box:hover img {
    transform: translateY(-3px);
}


.new-sub-blog-con .right-circles {
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

/* error page styling */
.sub-outer-wrapper.error-outer-bg {
    /* height: 991px; */
    flex-grow: 1;
    min-height: 100vh;
}

.sub-outer-wrapper::after {
    content: "";
    right: 0;
    top: 0;
    /* width: 781px; */
    width: 41%;
    height: 100%;
    position: absolute;
    background-color: var(--primary--color);
    background-size: cover;
    background-repeat: no-repeat;
}

.error-banner,
.coming-soon-banner {
    flex-grow: 1;
}

/* COMING SOON PAGE */
.coming-soon-banner .new-logo {
    margin-bottom: 95px;
}

.sub-outer-wrapper.coming-soon-outer::after {
    display: none;
}

.coming-soon-banner .pink-circle1 {
    left: 90px;
    top: -20px;
}

.coming-soon-banner .pink-circle2 {
    right: 0;
    bottom: -16px;
}

.coming-soon-outer .right-vctor2 {
    right: 0;
    top: 45px;
}

.coming-soon-banner h1 {
    margin-bottom: 48px;
}

/* coming soon countdown timer styling */
.compaign_countdown ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.compaign_countdown ul li {
    float: left !important;
    width: auto;
    margin: 0;
    text-align: center;
    margin: 0 13px;
    min-height: 133px;
    min-width: 133px;
    background-color: var(--primary--color);
    padding: 16px;
    color: #ffccf3;
    font-size: 22px;
    font-weight: 300;
}

.compaign_countdown ul li:first-child {
    margin-left: 0;
}

.compaign_countdown ul li:last-child {
    margin-right: 0;
}

.compaign_countdown ul li span.days,
.compaign_countdown ul li span.hours,
.compaign_countdown ul li span.minutes,
.compaign_countdown ul li span.seconds {
    display: block;
    color: var(--secondary--color);
    width: auto;
    font-size: 62px;
    line-height: 72px;
    border-radius: 0;
    font-family: "Barlow", sans-serif;
    font-weight: 700;
}

.compaign_countdown {
    margin: 0 auto;
    width: 70%;
}

/* services detial page styling */

.stats-con .var-right {
    right: 354px;
    top: 107px;
}

#contactpage span.error {
    font-size: 15px;
    line-height: 18px;
    margin-top: 10px;
    display: block;
    padding-left: 10px;
    color: var(--secondary--color);
    text-align: left;
}

/* fixes */
.our-creativity-con .creativity-content-con a:hover i {
    transform: translateX(-2px);
}