.elementor-widget-container:has(.custom-accordion-con), .elementor-widget:has(.custom-accordion-con) {
    width:fit-content!important;
}

.custom-accordion-inner img {
    width:86px;
    height:63px;
} 

.left-side-only {
    width:100%;
    max-width:700px;
}
 
 .page-link-btn {
        margin: 40px 0 10px 0;
        order:9;
    }

    .custom-accordion-list .page-link-btn a {
        padding: 16px 33.439px 16px 33.639px;
        border-radius: 84px;
        background: rgba(140, 245, 133, 0.80);
        color: #15003B;
        text-align: center;
        font-family: Poppins;
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: 24px;
        transition: background 0.5s ease;
        white-space: nowrap;
    }

    .custom-accordion-list .page-link-btn:hover a {
        background: rgba(140, 245, 133, 1);
    }

    .custom-accordion-con {
        display: flex;
        height: 194px;
        width:fit-content;
    }

    .custom-accordion-con.active {
        display: flex;
        height: auto;
    }

    .custom-accordion-inner-con {
        width: 424px;
        display: flex;
        flex-direction: column;
    }

    .custom-accordion {
        width: 100%;
        height: fit-content;
        background: #404C71;
        box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.25);
        border-radius: 20px 0px 0px 0px;
    }

    @media screen and (min-width: 768px) {
    .custom-accordion:first-child,
    .custom-accordion-inner-con:first-child {
        margin-right: 20px;
    }
}

    .custom-accordion-text-con {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 28px;
    }

    .custom-accordion-inner {
        padding: 20px;
    }

    .custom-accordion-list {
        list-style-type: none;
        margin: 20px 0 0;
        padding: 0;
        display: flex;
        flex-direction: column;
    }

    .custom-accordion-text-con {
        font-family: Poppins;
        font-size: 20px;
        font-style: normal;
        font-weight: 600;
        line-height: 30px;
        color: white;
        cursor: pointer;
        
    }

    .custom-accordion-list li:not(.page-link-btn) {
        border-radius: 10px;
        background: rgba(115, 130, 145, 0.85);
        padding: 20px;
        margin-bottom: 20px;
        transition: background 0.5s ease;
        cursor:pointer;
    }

    .custom-accordion-list li:not(.page-link-btn) a {
        font-family: Poppins;
        font-size: 20.586px;
        font-style: normal;
        font-weight: 500;
        line-height: 150%;
        color: white;
    }

    .custom-accordion-list li:not(.page-link-btn):hover a {
        color: white;
    }

    .custom-accordion-list li:not(.page-link-btn):hover {
        background: rgba(115, 130, 145, 1);
    }

    .custom-accordion-list li:not(.page-link-btn) a {
        display: flex;
        align-items: center;
    }

    .custom-accordion-list li svg {
        margin-left: 20px;
        transition: 0.5s ease-in-out; 
    }

    .custom-accordion-list li:not(.page-link-btn):hover svg {
        margin-left: 40px;
    }

    .custom-accordion-text-con svg {
        transition: 0.5s ease-in-out;
    }

    .custom-accordion-text-con.active svg {
        transform: rotate(180deg);
    }


    .custom-accordion-open-con {
        transform: scaleY(0);
        transform-origin: top;
        transition: transform 0.26s ease;
    }

    .custom-accordion-con.active .custom-accordion-open-con {
        transform: scaleY(1);
    }

    @media screen and (max-width:767px) {

        .custom-accordion-con {
            flex-direction: column;
            height: auto;
            align-items: center;

        }

        .custom-accordion-inner-con {
            height: 216px;
            margin-bottom: 30px;
            width:100%;
            max-width:424px;
        }

        .custom-accordion-con.active .custom-accordion-inner-con {
            height: auto;
        }
    }