.ced-header {
    background-color: transparent;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
}


.img-sec:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://cdn.shopify.com/s/files/1/0630/1096/3683/files/Frame_1000002442.png?v=1753690351');
    background-size: 107% 100%;
    background-position: bottom;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

.banner-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-bottom: 68px;
}

.badge-wrapper {
    display: flex;
    gap: 10px;
}

.banner-section {
    z-index: 1;
    overflow: hidden;
}

.banner-section::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: var(--ced-heading-color);
    z-index: -1;
}

.banner-section h1 {
    color: var(--ced-grey-60);
}


/* Banner Responsisve start  */

@media screen and (min-width: 1400px) {
    .banner-section h1 {
        font-size: 62px;
        line-height: 80px;
    }


}

@media screen and (min-width: 1200px) and (max-width: 1399px) {
    .banner-section h1 {
        font-size: 54px;
        line-height: 68px;
    }
}

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

    .banner-section .img-sec {
        max-width: 1000px;
    }
}


@media screen and (min-width: 992px) and (max-width: 1199px) {
    .banner-section h1 {
        font-size: 45px;
        line-height: 60px;
    }


}

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

    .banner-content {
        max-width: 85%;
    }

    .banner-section::before {
        height: calc(100% - 800px);
    }

    .banner-section {
        padding: 190px 0px 100px;
    }

}


@media screen and (min-width: 768px) and (max-width: 991px) {
    .banner-section h1 {
        font-size: 40px;
        line-height: 55px;
    }

    .banner-section {
        padding: 170px 0px 80px;
    }

    .banner-section::before {
        height: calc(130% - 930px);
    }
}

@media screen and (min-width: 576px) and (max-width: 767px) {
    .banner-section h1 {
        font-size: 32px;
        line-height: 42px;
    }

}

@media screen and (max-width: 767px) {

    .banner-cta {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 40px;
    }

    .banner-section::before {
        height: calc(160% - 930px);
    }

    .banner-section {
        padding: 130px 0px 60px;
    }
}

@media screen and (max-width: 575px) {
    .banner-section {
        background-size: 650px;
    }

    .banner-section h1 {
        font-size: 28px;
        line-height: 36px;
    }
}

.stats-section {
    background-color: var(--ced-heading-color);
}

.tooltip-inner {
    background-color: var(--ced-white-color) !important;
    color: #303030;
}

.tooltip.bs-tooltip-top .tooltip-arrow::before,
.tooltip.bs-tooltip-bottom .tooltip-arrow::before,
.tooltip.bs-tooltip-start .tooltip-arrow::before,
.tooltip.bs-tooltip-end .tooltip-arrow::before {
    border-top-color: #198754 !important;
    border-bottom-color: #198754 !important;
    border-left-color: #198754 !important;
    border-right-color: #198754 !important;
}

.stats-with-tooltip .bs-tooltip {
    position: absolute;
    right: 15px;
}

.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before,
.bs-tooltip-top .tooltip-arrow::before {
    border-top-color: var(--ced-white-color);
}


.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before,
.bs-tooltip-bottom .tooltip-arrow::before {
    border-bottom-color: var(--ced-white-color);
}


.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before,
.bs-tooltip-end .tooltip-arrow::before {
    border-right-color: var(--ced-white-color);
}


.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before,
.bs-tooltip-start .tooltip-arrow::before {
    border-left-color: var(--ced-white-color);
}

.our-expert-section .service-item {
    position: relative;
    break-inside: avoid;
    border-bottom: unset;
    transition: border-color 0.3s;
    overflow: hidden;
    padding: 25px 20px;
    border-left: 2px solid #EEEEEE;
    cursor: pointer;
}

.expert-item__content {
    font-size: 18px;
}

.service-item.active {
    border-color: #66ED78;
}

.our-expert-section .service-item:hover::after {
    width: 100%;
}

.our-expert-section .service-item__title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: nowrap;
}

.our-expert-section .service-item__title h3 {
    color: var(--ced-grey-60);
    font-family: 'montserratbold';
    margin: 0;
}

#expert-preview-image {
    transition: opacity 0.1s ease;
    opacity: 1;
    display: block;
    margin-left: auto;
}

@media screen and (min-width: 992px) {
    .subhead-wrapper {
        display: flex;
        justify-content: end;
    }

    .subhead-wrapper p {
        max-width: 633px;
    }

    .our-expert-section .expert-item__content {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.5s ease;
        margin: 0;
    }

    .our-expert-section .service-item:hover .expert-item__content,
    .our-expert-section .service-item.active .expert-item__content {
        max-height: 500px;
        opacity: 1;
        transform: translateY(0);
        padding-top: 12px;

    }

    .our-expert-section .services-offered {
        column-gap: 20px;
        margin-top: 40px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        align-items: end;
    }


    .our-expert-section .service-item__title h3 {
        font-size: 20px;
    }

}


@media screen and (max-width: 991px) {
    .our-expert-section .service-item__title h3 {
        font-size: 18px;
    }

    .our-expert-section .expert-item__content {
        font-size: 15px;
        padding-top: 12px;
    }

    .expert-service-image {
        order: -1;
        margin-bottom: 40px;
    }
}

.ced-brands-section {
    background-color: var(--ced-grey-color);
}

.ced-powered-brands {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 27px;
    gap: 20px;
}

.ced-powered-brands span {
    display: inline-flex;
    background-color: var(--ced-white-color);
    padding: 16px;
    flex: 1;
    justify-content: center;
    align-items: center;
    height: 90px;
    border-radius: 10px;
    border: 0.68px solid transparent;
    transition: all 0.3s;
}

.ced-powered-brands span:hover {
    border: 0.68px solid #0000001a;
}

.ced-powered-brands img {
    max-width: 65%;
}

@media screen and (max-width: 991px) {
    .ced-powered-brands img {
        max-width: 80%;
    }
}

@media screen and (max-width: 767px) {
    .ced-powered-brands {
        flex-wrap: wrap;
    }

    .ced-powered-brands span {
        flex: 29%;
        height: 65px;
    }
}
.seller-success-slider .seller-card {
    width: 100%;
}
.seller-card img {
    max-width: 60px;
}