@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

:root {
    --color-dark-puple: #74326F;
    --color-purple: #570760;
    --color-light-purple: #A43984;
    --color-white: #fff;
    --color-blue: #5248F0;
    --color-black: #000;
    --color-light-gray: #EFEFEF;
    --color-gray: #8F8F8F;
}

@font-face {
    font-family: 'centurygothic';
    src: url('../bootstrap/font/centurygothic.ttf') format('truetype');
}

@font-face {
    font-family: 'centschbkcyrill';
    src: url('../bootstrap/font/centschbkcyrill.ttf') format('truetype');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: all 0.5s ease-in-out;
}

body {
    font-family: 'centurygothic';
    font-size: 1rem;
    color: var(--color-black);
    background: var(--color-white);
    font-weight: 500
}

h1 {
    font-size: clamp(30px, 7vw, 50px);
    letter-spacing: -0.025em;
    line-height: 1.2;
    font-weight: 400;
}

    h1 span {
        color: var(--color-light-purple);
        font-family: 'centschbkcyrill';
        font-style: italic;
    }

h2 span,
h3 span,
h4 span,
h5 span {
    color: var(--color-light-purple);
    font-weight: 600;
}

h2 {
    font-weight: 400;
    font-size: clamp(30px, 4vw, 40x);
    margin-bottom: 25px;
}

h3 {
    font-weight: 600;
    font-size: clamp(26px, 5vw, 36px);
    line-height: clamp(32px, 6vw, 34.07px);
}

h4 {
    font-weight: 700;
    font-size: clamp(18px, 3vw, 22px);
    line-height: clamp(20px, 4vw, 26.82px);
}

h5 {
    font-weight: 700;
    font-size: clamp(18px, 3vw, 22px);
    line-height: clamp(18px, 4vw, 22px);
}

p {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
}

a,
a:hover,
a:focus {
    text-decoration: none !important;
    color: inherit;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

img {
    border-style: none;
    max-width: 100%;
    height: auto;
}


/* Spacing */
.padding-100 {
    padding: clamp(40px, 10vw, 80px) 0px;
}

.padding-top {
    padding-top: clamp(40px, 10vw, 80px);
}

.padding-bottom {
    padding-bottom: clamp(40px, 10vw, 80px);
}

.navbar-brand {
    width: 144px;
    height: auto;
}

@media (max-width: 576px) {
    .navbar-brand {
        width: 100px;
        height: auto;
    }
}

@media (min-width: 1200px) {
    .navbar ul li.nav-item {
        padding-inline: 10px !important;
        margin-inline: 4px !important;
    }
}

@media (min-width: 992px) {
    .navbar ul li.nav-item {
        padding-inline: 5px;
        margin-inline: 2px;
        position: relative;
    }

        .navbar ul li.nav-item::after {
            content: '';
            position: absolute;
            height: 5px;
            width: 5px;
            border-radius: 100%;
            background: var(--color-black);
            top: 50%;
            left: 0px;
            transform: translateY(-50%);
        }
}



.navbar .dropdown-menu li {
    list-style-type: none;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show,
.navbar-nav .nav-link:hover {
    color: var(--color-light-purple);
}

.navbar-nav .nav-link.active {
    font-weight: 600;
}

@media (max-width:1199px) {
    .navbar-nav {
        width: fit-content !important;
        margin-inline: auto;
    }
}

.text-purple {
    color: var(--color-purple);
}



#home #about-martech .beautify-image-left {
    position: absolute;
    left: 0px;
    top: 30%;
    opacity: 0.4;
    transform: translateY(-50%);
}

#home #about-martech .beautify-image-right {
    position: absolute;
    right: 0px;
    top: 50%;
    opacity: 0.4;
    transform: translateY(50%);
}

#home #why-search .beautify-image-left {
    position: absolute;
    left: 0px;
    top: 69%;
    opacity: 0.4;
    transform: translateY(-50%);
}

#get-started-today {
    background: url(../../assets/img/get-started-today.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.dropdown-menu {
    display: block;
    opacity: 0;
    transform: scale(1.3);
    transform-origin: top;
    visibility: hidden;
}

    .dropdown-menu.show {
        opacity: 1;
        transform: scale(1);
        visibility: visible;
    }

.navbar-nav .dropdown-menu {
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
}

.fixed-top {
    background: var(--color-white);
    box-shadow: rgba(0, 0, 0, 0.45) 0px 0px 1px 0px;
}

@media (max-width:992px) {

    .banner-image {
        width: 100%;
        height: 400px;
        object-fit: cover;
        object-position: top;
    }
}

.footer-divider {
    border-color: var(--color-white);
}

#home-banner {
    background: url('../img/home-banner-element-bg.png');
    background-position: center top;
    background-size: contain;
    background-repeat: no-repeat;
}

.btn-white {
    background-color: var(--color-white);
    color: var(--color-purple);
    border-radius: 50px;
    padding: 10px 15px;
    border: 1px solid var(--color-black);
    box-shadow: rgba(0, 0, 0, 0.45) 0px 0px 0px 0px;
    display: inline-block;
    transform: translate(-0px) skew(0px);
}

    .btn-white:hover {
        box-shadow: rgba(0, 0, 0, 0.15) 2.4px 2.4px 3.2px;
        color: var(--color-purple) !important;
    }

.bg-blue {
    background-color: var(--color-blue);
    color: var(--color-white);
}

@media (min-width:992px) {

    .dividing-border {
        position: relative;
    }

        .dividing-border::after {
            content: '';
            position: absolute;
            background: var(--color-black);
            height: 240px;
            right: 3%;
            width: 1px;
            top: 50%;
            transform: translateY(-50%);
        }

    .owl-carousel .dividing-border::after {
        right: 0%;
    }
}

@media (min-width: 992px) {
    #hiring-cutout {
        position: absolute;
        width: 100%;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        pointer-events: none;
    }
}

footer {
    background: var(--color-purple);
}

#hiring-text {
    background: url('../img/project-based-hiring.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

@media (min-width: 992px) and (max-width: 1199px) {
    #hiring-cutout img {
        transform: scale(1.3);
        transform-origin: right bottom;
    }
}


.audit-wrapper img {
    width: 80px !important;
    height: 80px;
}

.partner-wrapper .partner-image-box {
    position: absolute;
    top: 0%;
    transform: translate(-50%, -50%);
    left: 50%;
}

.partner-wrapper img {
    width: 100px !important;
    height: 100px;
}

.partner-wrapper {
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
    position: relative;
}

    .partner-wrapper p {
        text-align: justify;
    }

.owl-carousel .owl-stage {
    display: flex;
}

.item,
.partner-wrapper {
    height: 94%;
}

@media(max-width:992px) {
    .why-chose-box {
        padding: 20px !important;
    }
}

.why-chose-box {
    background-color: var(--color-purple);
    border-bottom-left-radius: 80px;
    padding: 67px 50px 50px 91px;
}

/*---------------Ashok-------------------*/

/*---------------ABOUT US-------------------*/
#inner-banner {
    background: url(../../assets/img/inner-page-baner-img.webp);
    background: url(../../assets/img/inner-page-baner-img.png);
    background-size: cover;
    background-position: center center;
    margin-top: 109px;
}


@media(max-width: 576px) {
    #inner-banner {
        margin-top: 82px;
    }
}

.content-down {
    padding: 55px 0 55px 0;
}

.color-purple {
    color: var(--color-purple);
}

.border-line {
    border-left: 1px solid var(--color-light-purple);
    height: 250px;
}

.purple-tittle {
    color: var(--color-light-purple);
    font-weight: bold;
}

#inner-banner h1 {
    font-size: clamp(30px, 7vw, 38px);
}

.radius-right {
    border-bottom-right-radius: 50px;
}

.radius-left {
    border-bottom-left-radius: 50px;
}

@media (max-width: 992px) {
    .text-underline::after {
        margin-inline: auto;
    }
}

@media (min-width: 768px) {
    .text-underline {
        position: relative;
        display: inline-block;
    }
}

@media (min-width: 768px) {
    .text-underline::after {
        content: '';
        display: block;
        width: 181px;
        height: 1.0px;
        background-color: var(--color-black);
        margin-top: 5px;
        transition: width 0.9s ease-in-out;
    }

    .text-underline.light::after {
        background-color: var(--color-white);
    }
}

@media (min-width: 768px) {
    .text-underline:hover::after {
        width: 100%;
    }
}

@media (min-width: 768px) {
    .text-center-underline {
        position: relative;
        display: inline-block;
        width: fit-content;
    }
}

@media (min-width: 768px) {
    .text-center-underline::after {
        content: '';
        display: block;
        width: 181px;
        height: 1px;
        background-color: var(--color-black);
        margin: 12px auto 0 auto;
        transition: width 0.9s ease-in-out;
    }
}

@media (min-width: 576px) {
    .text-center-underline:hover::after {
        width: 100%;
    }
}

.justify {
    text-align: justify;
}

.approch-box {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.approch-icon {
    margin-top: -40px;
}

#ready-control {
    background: url(../../assets/img/ready-control-data-img.webp);
    background: url(../../assets/img/ready-control-data-img.png);
    background-size: cover;
    background-position: center center;
}

#contact-control {
    background: url(../../assets/img/Partner-with-Data-Driven-Creative.webp);
    background: url(../../assets/img/Partner-with-Data-Driven-Creative.png);
    background-size: cover;
    background-position: center center;
}

.btn {
    background: var(--color-light-purple) !important;
    color: var(--color-white) !important;
    border-radius: 40px;
}

#join-today {
    background: var(--color-light-gray);
}



.choose-img {
    position: absolute;
    left: -50px;
    top: 50%;
    transform: translateY(-50%) scale(0.95);
    transform-origin: left center;
    pointer-events: none
}

.img-width {
    width: 60%;
}

.form-control,
.form-select {
    border: 2px solid var(--color-gray);
    border-radius: 0px;
    border-bottom-right-radius: 15px;
    padding-left: 23px !important;
}

label {
    padding-left: 30px !important;
}

.form-control:focus,
.form-select:focus {
    box-shadow: unset;
    border-color: var(--color-black);
}

.form-floating > label {
    left: -5px;
}

/* Marketing cloud*/

/*.process-step {
    text-align: center;
    padding: 20px;
}*/

.process-step img {
    width: 80px;
    margin-bottom: 15px;
}

@media(min-width:992px) {
    .process-line {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

        .process-line::before {
            content: "";
            position: absolute;
            top: 0%;
            left: 0%;
            width: 100%;
            height: 7px;
            background-color: #763270;
            z-index: -1;
        }

    .dot-container {
        position: absolute;
        top: -12px;
        width: 100%;
        display: flex;
        justify-content: space-around;
    }

    .dot {
        width: 30px;
        height: 30px;
        background-color: #A9229F;
        border-radius: 50%;
    }
}


/*.frame-1 {
    background: url(../../assets/img/frame-1.webp);
    background: url(../../assets/img/frame-1.png);
    background-size: cover;
    background-position: center center;
}*/
/*#data-driven-creative {
    background: url(../../assets/img/Frame.png);
    background: url(../../assets/img/Frame.png);
    background-size: cover;
    background-position: center center;
}*/
.frames .frame-1 {
    max-width: 70%;
    margin: auto;
    padding-left: 20px;
    display: flex;
    align-items: center;
    padding-top: 30px;
}

.frames {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

    .frames p {
        text-align: center;
        margin-bottom: 0px;
    }

@media(max-width:1380px) {
    .frames p {
        font-size: 15px;
        line-height: 20px;
    }

    .frames .frame-1 {
        max-width: 75%;
    }
}

@media(max-width:1160px) {
    .frames p {
        font-size: 13px;
        line-height: 17px;
    }
}

@media(max-width:1080px) {
    .frames .frame-1 {
        max-width: 80%;
    }
}

@media(max-width:940px) {
    .frames p {
        font-size: 12px;
        line-height: 15px;
    }
}

@media(max-width:880px) {
    .frames .col-md-3 {
        width: 50%;
        height: unset !important;
        margin-bottom: 20px;
    }

    .frames p {
        font-size: 16px;
        line-height: 25px;
    }

    .frame_img {
        display: none
    }

    .frames {
        position: unset;
        transform: unset;
        width: unset;
    }

        .frames .frame-1 {
            max-width: unset;
            border: 10px solid;
            border-image: linear-gradient(45deg, #F246FF, #9E0BAA) 1;
            border-radius: 20px;
            margin: 20px;
            padding: 30px 15px;
        }
}

@media(max-width:676px) {
    .frames .col-md-3 {
        width: 96%;
        margin: auto;
    }
}


/* manan */

@media(min-width: 992px) {

    #platform-questionnaire,
    #get-in-touch {
        background: url('../img/bg-show-yellow.png');
        background-repeat: no-repeat;
        background-size: contain;
        background-position: 160%;
    }
}

.text-purple {
    color: #A43984;
}

.font-weights {
    font-weight: 500 !important;
}

.form-floating > .form-select {
    padding-top: 0.625rem !important;
}

.form-control:focus,
.form-select:focus {
    box-shadow: 0 0 0 .25rem #9200a352 !important;
}

.form-control,
.form-select {
    border: 1px solid #8F8F8F !important;
}

.form-floating label,
.form-select,
input {
    color: #8F8F8F !important;
}

.form-floating > label {
    width: -webkit-fill-available;
}

.form-control {
    border-start-start-radius: 0px;
    border-start-end-radius: 0px;
    border-end-start-radius: 0px;
    border-bottom-right-radius: 13px;
}

.bg-purple {
    background: #570760;
    padding: 33px 40px;
    border-end-end-radius: 70px;
}

.icons {
    background: #FFFFFF;
    color: #a500b7;
    border-radius: 50%;
    padding: 10px 14px;
}

.border-lines {
    border: 1px solid #fff;
    opacity: unset !important;
}

.btn-purple {
    background: #A43984;
    color: var(--color-white);
    border-radius: 50px;
    padding: 14px 44px;
    transition: all 0.5s ease-in-out;
}

    .btn-purple:hover {
        background: #570760;
        color: #fff;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
        transform: translateY(-3px)
    }

.dropdown-item {
    padding: 6px 15px;
    transition: unset;
}

    .dropdown-item.active,
    .dropdown-item:active,
    .navbar .dropdown-menu .dropdown-item:hover,
    .navbar .dropdown-menu .dropdown-item:focus {
        background: linear-gradient(90deg, #F246FF 0%, #9E0BAA 100%);
        color: var(--color-white);
        border-top: 1px solid #fff;
    }

footer a.active {
    font-weight: 600;
}


#insight {
    background: url(../../assets/img/audit-bg-img.webp);
    background: url(../../assets/img/audit-bg-img.png);
    background-size: cover;
    background-position: center center;
}

.prev,
.next {
    cursor: pointer !important;
}

.content-size h3 a,
.text-sizes {
    font-size: 25px !important;
    font-weight: 600 !important;
}

.content-size .text-reduce {
    font-size: 20px !important;
    font-weight: 600 !important;
}











/* common css */

.accordion-button:not(.collapsed) {
    background-color: #570760;
    color: #fff;
}

.accordion-button {
    background-color: #570760;
    color: #fff;
    font-weight: 500;
    border-radius: 0 !important;
}

.dedicated-hiring-accordion::after,
.adaptive-hiring-accordion::after,
.data-analytics-accordion::after,
.adtech-accordion-btn::after{
    filter: brightness(0) invert(1);
}

.buss-rhs .item {
    width: 6%;
    float: left;
    background-color: #95a5a6;
    height: 555px;
    cursor: pointer;
    position: relative;
}

.buss-rhs .item-1 {
    background-color: #570760 !important;
}

.buss-rhs .info {
    width: 0;
    float: left;
    background-color: #FFFFFF;
    color: #222;
    height: 555px;
    display: none;
    position: relative;
}

.buss-rhs {
    margin: 0px auto;
    width: 100%;
    text-align: center;
    font-weight: bold;
    height: 555px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.talent-registration-accordion, 
.digital-marketing-service,
.talent-registration-join-img {
    padding-right: 120px;
}




.buss-rhs .item-2 {
    background-color: #A43984;
}


.buss-rhs .item h3 {
    -webkit-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    transform: rotate(90deg);
    font-size: 26px;
    font-weight: 500;
    color: #FFFFFF;
    position: absolute;
    width: 555px;
    left: -240px;
    text-align: center;
    bottom: 240px;
}

.key-offering-list {
    list-style-type: disc;
    padding-left: 25px;
}

.vertical-divider {
    border-right: 1px solid #A43984;
    height: 250px;
}

/* Home page */
.banner-list {
    list-style: disc;
    padding-left: 1.5rem;
    color: #8e248f;
    font-weight: 600;
    font-size: 1.1rem;
}

.banner-list li {
    margin-bottom: 0.5rem;
}

.text-purple {
    color: #8e248f;
}

.hiring-card {
    padding: 30px;
    border: 2px solid white;
    height: 100%;
}

.hiring-card h4 {
    font-weight: bold;
    margin-bottom: 15px;
}

.key-offering-list li {
    padding: 5px;
    font-size: 18px;
}

.banner-wrapper {
    position: relative;
    min-height: 500px;
}

.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 1;
}

.banner-gradient {
    position: absolute;
    top: 660px;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 1;
}

.man-image {
    position: relative;
    z-index: 2;
    height: 650px;
}

.banner-list {
    position: absolute;
    z-index: 3;
    font-size: 32px;
    font-weight: 600;
    color: #A43984;
    margin-top: -350px;
    margin-left: 700px;
}

.home-banner-list {
    font-size: 20px;
    font-weight: 600;
    color: #A43984;
}

.banner-list li, .home-banner-list li {
    margin-bottom: 10px;
    list-style: disc;
    padding: 6px;
    font-style: italic;
    text-align: start;
}

.purple-light-bg {
    background: #A43984;
}

.feature-box {
    text-align: center;
    padding: 15px;
}

.feature-box picture {
    width: 60px;
    margin-bottom: 15px;
}

.feature-box h5 {
    color: #570760;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-box p {
    font-size: 16px;
}

#home #marketingService .beautify-image-right {
    position: absolute;
    right: 0px;
    top: 0%;
    opacity: 0.6;
    transform: translateY(50%);
}


/* Talent Hire */
.buss-rhs .talent-hire-accordion {
    width: 4.8%;
    float: left;
    height: 555px;
    cursor: pointer;
    position: relative;
}

.buss-rhs .talent-hire-accordion h3 {
    -webkit-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    transform: rotate(90deg);
    font-size: 26px;
    font-weight: 500;
    color: #FFFFFF;
    position: absolute;
    width: 555px;
    left: -245px;
    text-align: center;
    bottom: 240px;
}

#dedicatedHiring .beautify-image-right {
    position: absolute;
    right: 0px;
    top: 50%;
    opacity: 0.6;
    transform: translateY(50%);
}

#dedicatedHiring .beautify-image-left {
    position: absolute;
    left: 0px;
    top: 150%;
    opacity: 0.6;
    z-index: 0;
    transform: translateY(-50%);
}

#Adaptive-Hiring .beautify-image-right {
    position: absolute;
    right: 0px;
    top: 190%;
    opacity: 0.6;
    z-index: 0;
    transform: translateY(50%);
}

.row.d-lg-block.d-none.z-1 {
    position: relative;
    z-index: 1;
}


/* Playbooks */
.approch-box {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.approch-title {
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/*Talent Registration*/
.key-offering-list li {
    padding: 3px;
}


/* dropdown shows on hover */
.dropdown-hover:hover .dropdown-hover-menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.dropdown-hover-menu {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.2s ease-in-out !important;
    margin-top: 0 !important;
}








/* Responsive */
@media (max-width:1199px) and (min-width: 992px) {
    .banner-list {
        margin-top: -350px;
        margin-left: 650px;
    }

    .buss-rhs .item h3.analytics-audit-accordion-title,
    .buss-rhs .item h3.adtech-accordion-title {
        left: -250px;
    }

    .buss-rhs .item h3 {
        left: -255px;
    }

    .accordion-adaptive-hiring {
        font-size: 16px !important;
    }
}

@media (max-width: 992px) {
    .digital-marketing-service {
        padding-right: 10px;
    }

    .digital-marketing-service h2,
    .talent-hire-text {
        text-align: center;
    }

    .home-gredient-banner {
        display: none;
    }

    .feature-box {
        padding: 0px;
    }

    .digital-marketing-service,
    .talent-registration-accordion,
    .talent-registration-join-img {
        padding-right: 12px;
    }

    .home-banner-list {
        margin-top: 30px;
    }

    .hiring-card {
        padding: 12px;
    }

    .why-chose-box {
        border-bottom-left-radius: 0px;
    }

    .contact-info {
        padding: 15px;
        border-end-end-radius: 0px;
    }

    .accordion-body .talent-hire-mobile-view {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
}

@media (min-width: 992px) {
    .divider-col {
        border-right: 1px solid #A43984;
        height: 280px;
    }

    .divider-col:last-child {
        border-right: none;
    }

    
}

@media (max-width: 768px) {
    .banner-list {
        font-size: 22px;
    }

    .contact-section {
        text-align: center;
    }

    .contact-section .row {
        justify-content: center !important;
    }
}

@media (max-width: 576px) {
    .man-image {
        position: relative;
        z-index: 2;
        max-height: 500px;
    }

    .banner-list {
        margin-top: 20px;
    }

    .home-banner-list {
        list-style: disc !important;
        padding-left: 30px;
    }

    .home-banner-list li {
        list-style: disc !important;
    }
}

@media (max-width: 500px) {
    .digital-marketing-service button,
    #dedicatedHiringAccordion button,
    .why-choose-accordion button{
        font-size: 1rem !important;
    }

    .contact-mail-info {
        padding-left: 15px !important;
    }
}
