/* .tab-section::before{
    content: "";
    background: #EADEDA;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 350px;
} */
.tab-section .top-head-wrap {
    background: #EADEDA;
    padding-bottom: 80px;
}

.tab-section .bottom-card-wraps {
    margin-top: -45px;
}

.mob-tabs-div {
    display: block;
}

.desktop-tab-div {
    display: none;
}

.marketing-process {
    position: relative;
}

.marketing-process.sec-vetical-padding {
    padding: 0 0 70px;
}

.marketing-process .container {
    position: relative;
    z-index: 1;
}

.marketing-process .tab-wrapper {
    display: none;
}

.marketing-process .tab-wrapper .tabs-chips {
    width: 100%;
    background: #FFFFFF;
    border-radius: 10px;
    /* padding: 10px 20px;
    margin-top: 45px; */
    /* box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.08); */
    border: 1px solid #eadeda;
}

.marketing-process .tab-wrapper .tabs-chips ul {
    display: flex;
    justify-content: space-around;
    align-items: stretch;
    margin: 0;
    padding: 0;
    list-style: none;
}

.marketing-process .tab-wrapper .tabs-chips ul li {
    flex: 1;
    display: flex;
    justify-content: center;
}

.marketing-process .tab-wrapper .tabs-chips h4 {
    display: none;
}

.marketing-process .tabs-content-wrapper h3,
.marketing-process .tabs-accordion-wrap h3 {
    text-align: left;
    font-size: 18px;
    color: #000;
}

.marketing-process .tab-wrapper .tabs-chips .chip-btn-wrap.tab-btn {
    background: transparent;
    border: none;
    border-radius: 0;
    width: 100%;
    /* Override fixed width */
    height: auto;
    /* Override fixed height */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 15px 20px;
    position: relative;
    font-family: inherit;
    color: #8D8D8D;
    transition: all 0.3s ease;
    margin: 0;
    /* Clear margins */
}

.marketing-process .tab-wrapper .tabs-chips .chip-btn-wrap.tab-btn:hover {
    color: #582C5F;
}

.marketing-process .tab-wrapper .tabs-chips .chip-btn-wrap.tab-btn .tab-icon {
    font-size: 24px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
    width: 50px;
}

.marketing-process .tab-wrapper .tabs-chips .chip-btn-wrap.tab-btn .tab-label {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
}

/* Active State */
.marketing-process .tab-wrapper .tabs-chips .chip-btn-wrap.tab-btn.active {
    color: #582C5F;
}

/* Active Underline */
.marketing-process .tab-wrapper .tabs-chips .chip-btn-wrap.tab-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #582C5F;
    transition: width 0.3s ease;
    border-radius: 2px;
}

.marketing-process .tab-wrapper .tabs-chips .chip-btn-wrap.tab-btn.active::after {
    width: 80%;
}

.tabs-accordion-wrap {
    margin-top: 55px;
}

.tabs-accordion-wrap .tabs-qa {
    /* padding: 16px 25px; */
    background: white;
    position: relative;
    margin-bottom: 20px;
    /* border-radius: 20px; */
    overflow: hidden;
    border: 1px solid #0009291A;
}

.tabs-accordion-wrap .tabs-qa button {
    width: 100%;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
    background: none;
    border: none;
    color: #20283A;
    text-transform: none;
    text-align: left;
    cursor: pointer;
    padding: 15px 60px 15px 15px;
}

.tabs-accordion-wrap .tabs-qa button .icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: block;
    right: 15px;
    top: 10px;
    /* background: #7070701A; */
    /* border: 1px solid rgba(112, 112, 112, 0.5450980392); */
    position: absolute;
    transition: 300ms;
    cursor: pointer;
}

.tabs-accordion-wrap .tabs-qa button .icon::before {
    content: '';
    position: absolute;
    background: #b3b4be;
    width: 20px;
    height: 3px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
    border-radius: 10px;
    transition: 300ms;
}

.tabs-accordion-wrap .tabs-qa button .icon::after {
    content: '';
    position: absolute;
    background: #b3b4be;
    width: 20px;
    height: 3px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0);
    border-radius: 10px;
}

.tabs-accordion-wrap .tabs-qa button[aria-expanded='true'] {
    background: var(--green);
    color: white;
}

.tabs-accordion-wrap .tabs-qa button[aria-expanded='true'] .icon::before {
    background: white;
    transform: translate(-50%, -50%) rotate(0);
}

.tabs-accordion-wrap .tabs-qa button[aria-expanded='true'] .icon::after {
    background: white;
    transform: translate(-50%, -50%) rotate(0);
}

.tabs-accordion-wrap .tabs-qa button[aria-expanded='true']+.accordion-content {
    opacity: 1;
    max-height: 150em;
    padding-bottom: 10px;
    transition: all 200ms linear;
    will-change: opacity, max-height;
}

.tabs-accordion-wrap .tabs-qa:has(button[aria-expanded='true']) {
    border: 1px solid var(--green);
}

.tabs-accordion-wrap .tabs-qa .accordion-content {
    width: 100%;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 200ms linear, max-height 200ms linear;
    will-change: opacity, max-height;
}

.tabs-accordion-wrap .tabs-qa .accordion-content .content {
    padding: 18px;
}

.tabs-accordion-wrap .tabs-qa .accordion-content .content li {
    margin: 7px 0;
    display: flex;
    font-size: 15px;
    color: #20283A;
}

.tabs-accordion-wrap .tabs-qa .accordion-content .content li img {
    width: 18px;
    height: 13px;
    margin: 6px 7px 0 0;
}

.tabs-accordion-wrap .tabs-qa .accordion-content .content .list-head {
    margin-top: 10px;
}

.tabs-accordion-wrap .tabs-qa .accordion-content .content-img {
    margin-top: 20px;
    width: 100%;
    display: block;
    /* border-radius: 20px; */
}

.tabs-accordion-wrap .tabs-qa .accordion-content p {
    /* margin-top: 10px; */
    font-size: 15px;
    color: #20283A;
}

.marketing-process .tabs-content-wrapper {
    display: none;
    margin-top: 30px;
    padding: 0 20px;
}

.marketing-process .tabs-content-wrapper .tabs {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.marketing-process .active {
    display: block;
}

.marketing-process .tabs-content-wrapper .left-div {
    width: 100%;
    order: 2;
    margin-top: 20px;
}

.marketing-process .tabs-content-wrapper .right-div {
    width: 100%;
    order: 1;
}

.marketing-process .tabs-content-wrapper .left-div .tabs-head {
    color: #1C379D;
    font-size: 28px;
    line-height: 34px;
    font-weight: 600;
    margin-bottom: 10px;
}

.marketing-process .tabs-content-wrapper .left-div .list-head {
    font-size: 18px;
    font-weight: 600;
    margin-top: 26px;
}

.marketing-process .tabs-content-wrapper .left-div ul li {
    margin: 10px 0;
    display: flex;
}

.marketing-process .tabs-content-wrapper .left-div ul li img {
    width: 18px;
    height: 13px;
    margin: 6px 7px 0 0;
}

.marketing-process .tabs-content-wrapper .right-div img {
    width: 100%;
    /* border-radius: 20px; */
}

.marketing-process.tab-section.pt-0 {
    padding-top: 0px;
}

.marketing-process.tab-section.pb-0 {
    padding-bottom: 0px;
}

.marketing-process .tabs-content-wrapper .left-div p {
    padding-bottom: 10px;
}

@media screen and (min-width:576px) {
    .tabs-accordion-wrap {
        margin-top: 35px;
    }
}

@media screen and (min-width:768px) {
    .marketing-process .tab-wrapper .tabs-chips h4 {
        font-size: 14px;
    }

    /* Width overrides removed for new design */


    /* .marketing-process .tabs-content-wrapper {
        padding: 30px;
    } */

    .marketing-process .tabs-content-wrapper .right-div {
        width: 80%;
        margin: 0 auto;
    }
}

@media screen and (min-width:1024px) {
    .tab-section::before {
        height: 45%;
    }

    .tab-section .top-head-wrap {}

    .mob-tabs-div {
        display: none;
    }

    .desktop-tab-div {
        display: block;
    }

    .marketing-process .tab-wrapper {
        display: block;
    }

    .marketing-process .tab-wrapper .tabs-chips {
        width: 100%;
    }

    .marketing-process .tab-wrapper .tabs-chips h4 {
        font-size: 15px;
    }

    /* Desktop Width overrides removed */


    .marketing-process .tabs-content-wrapper .left-div {
        width: 48%;
        order: 1;
        margin-top: 0;
    }

    .marketing-process .tabs-content-wrapper .right-div {
        width: 38%;
        margin: 0;
        order: 2;
    }

    .marketing-process .tab-wrapper .tabs-chips .chip-btn-wrap .tab-chip {
        width: 93px;
        height: 103px;
        left: -1%;
        top: -2%;
    }
}

@media screen and (min-width:1440px) {

    .tab-section::before {
        height: 43%;
    }

    .marketing-process .tab-wrapper .tabs-chips {
        width: 100%;
    }

    .marketing-process .tab-wrapper .tabs-chips ul {
        /* margin-top: 60px; */
    }

    .marketing-process .tab-wrapper .tabs-chips h4 {
        font-size: 17px;
    }

    /* Large Screen Width overrides removed */


    .marketing-process .tab-wrapper .tabs-chips .chip-btn-wrap .tab-chip {
        width: 102px;
        height: 110px;
    }

    .marketing-process .tabs-content-wrapper {
        padding: 0 20px;
    }
}