        .accordion-button {
            background: #f8f9fa;
            border: none;
            font-size: 20px;
            padding: 15px 20px;
            font-weight: 600 !important;
        }

        @keyframes slides {
            from {
                transform: translateX(0);
            }

            to {
                transform: translateX(-100%);
            }
        }

        .logos {
            overflow: hidden;
            padding: 30px 0px;
            white-space: nowrap;
            position: relative;
        }

        .logos:before,
        .logos:after {
            position: absolute;
            top: 0;
            content: '';
            width: 250px;
            height: 100%;
            z-index: 2;
        }

        .logos:before {
            left: 0;
            background: linear-gradient(to left, rgba(255, 255, 255, 0), rgb(255, 255, 255));
        }

        .logos:after {
            right: 0;
            background: linear-gradient(to right, rgba(255, 255, 255, 0), rgb(255, 255, 255));
        }

        .logo_items {
            display: inline-block;
            animation: 35s slides infinite linear;
        }

        .logos:hover .logo_items {
            animation-play-state: paused;
        }

        .logo_items img {
            height: 100px;
        }

        /* Process Stepper Styles */
        .process-section {
            padding: 20px 0;
            /* background: #f8f9fa; */
            padding-bottom: 0;
            overflow: hidden;
        }

        .process-container {
            max-width: 900px;
            width: 100%;
            max-height: 500px;
            height: 500px;
            position: relative;
            /* filter: drop-shadow(16px 16px 20px rgba(132, 98, 115, 0.4)); */
            margin: 0 auto;
        }

        .process-container:before {
            content: '';
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            position: absolute;
            height: 150%;
            width: 150%;
            z-index: -10;
        }

        .content {
            border-radius: 32px;
            top: 70px;
            position: absolute;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            gap: 0;
            width: 100%;
            height: calc(100% - 100px);
            left: 0;
            padding: 70px 40px;
            display: none;
            /* background: #fff; */
            border: 1px solid #ccc;
            background: #F9F9F9;
            border-radius: 24px;
            /* box-shadow: 0 12px 20px -4px #0000000d, 0 4px 8px -2px #0000001a; */
        }

        .content.intro {
            justify-content: flex-start;
            text-align: left;
        }

        .content h1 {
            font-size: 2.2em;
            font-weight: bold;
            color: #2d1b27;
            margin-bottom: 0.5em;
        }

        .content h2 {
            font-size: 35px;
            font-weight: bold;
            color: #2d1b27;
            margin-bottom: 20px;
        }

        .content p {
            color: #2d1b27;
            font-size: 1.1rem;
            line-height: 1.6;
            max-width: 600px;
        }

        .step-number {
            background: #45a851;
            color: rgba(255, 255, 255, 1);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8em;
            font-weight: bold;
            margin-bottom: 1em;
            box-shadow: 0 12px 20px -4px #0000000d, 0 4px 8px -2px #0000001a;
        }

        .step {
            float: left;
            position: relative;
            top: 0;
            left: 0;
            height: 35px;
            width: 10%;
            font-weight: bold;
        }

        .step:after {
            content: '';
            position: absolute;
            width: 35px;
            color: #000;
            font-size: 0.9em;
            height: 35px;
            border-radius: 50%;
            background: none;
            left: 50%;
            transform: translateX(-50%);
            z-index: 99;
            background: #ffffffff;
            transition: 0.5s ease-in-out;
            border: 2px solid white;
            box-shadow: 0 12px 20px -4px #0000000d, 0 4px 8px -2px #0000001a;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .step.step1:after {
            content: '1';
        }

        .step.step2:after {
            content: '2';
        }

        .step.step3:after {
            content: '3';
        }

        .step.step4:after {
            content: '4';
        }

        .step.step5:after {
            content: '5';
        }

        .step.step6:after {
            content: '6';
        }

        .step.step7:after {
            content: '7';
        }

        .step.step8:after {
            content: '8';
        }

        .step.step9:after {
            content: '9';
        }

        .step.step10:after {
            content: '✓';
        }

        .step:before {
            content: "";
            position: absolute;
            width: 100%;
            top: 50%;
            right: 50%;
            transform: translateY(-50%);
            height: 7px;
            border: 2px solid #cccccc7d;
            /* box-shadow: 8px 8px 10px rgba(132, 98, 115, 0.4); */
            transition: 0.1s ease-in-out;
        }

        .step.step1:before {
            display: none;
        }

        /* label {
            background: #45a851;
            color: white;
            padding: 0.5em 1.75em;
            margin-left: auto;
            right: 3em;
            bottom: 2em;
            cursor: pointer;
            transition: 0.2s ease-in-out;
            border-radius: 8px;
            user-select: none;
            -webkit-user-select: none;
            font-size: 0.95em;
        }

        label:hover {
            background: rgb(68 68 68);
            box-shadow: 10px 10px 10px rgba(132, 98, 115, 0.4);
            bottom: calc(2em + 2px);
            right: calc(3em + 2px);
        } */

        input[name="toggler"] {
            display: none;
        }

        input[name="toggler"]:checked+.content {
            display: flex;
        }

        input[name='toggler']:checked+.content+.step:after {
            background: #45a851;
            color: rgba(255, 255, 255, 1);
        }

        input[name='toggler']:checked+.content+.step:before {
            background: white;
        }

        input:not(:checked)+.step {
            color: white;
        }

        input:not(:checked)+.step:after {
            border-color: white;
            color: white;
        }

        input[type="reset"] {
            background: #45a851;
            color: white;
            padding: 0.75em 2em;
            position: absolute;
            right: 3em;
            bottom: 2em;
            cursor: pointer;
            transition: 0.2s ease-in-out;
            border-radius: 8px;
            user-select: none;
            -webkit-user-select: none;
            border: none;
            font-size: 1rem;
        }

        input[type="reset"]:hover {
            background: rgb(68 68 68);
            box-shadow: 10px 10px 10px rgba(132, 98, 115, 0.4);
            bottom: calc(2em + 2px);
            right: calc(3em + 2px);
        }

        .process-section {
            position: relative;
            overflow: visible;
            margin-bottom: 100px;
        }

        .process-section .slide-btn-box {
            position: absolute;
            left: 0;
            bottom: -30px;
            width: 100%;
            display: flex;
            justify-content: center;
            gap: 7px;
        }

        .process-section .slide-btn-box .btn {
            border-radius: 60px;
            width: 50px;
            height: 50px;
            background: #373536 !important;
            border: none;
        }

        .btn-check:focus+.btn-secondary,
        .btn-secondary:focus,
        .btn-success:focus {
            box-shadow: none;
            border-color: transparent
        }

        @media (max-width: 780px) {

            .step-by-step{
                padding-bottom: 0 !important;
            }

            .process-container {
                max-height: 600px;
                width: 90%;
            }

            .content {
                padding: 2em;
            }

            .step {
                width: 10%;
            }

            .step:after {
                width: 25px;
                height: 25px;
                font-size: 0.7em;
            }

            .step:before {
                border: none;
            }

            input[name='toggler']:checked+.content+.step:before {
                background: none;
            }
        }

        @media (max-width: 600px) {
            .process-container {
                max-height: 650px;
            }

            .content {
                padding: 1.5em;
            }

            .content h1 {
                font-size: 1.8em;
            }

            .content h2 {
                font-size: 1.4em;
            }

            .step-number {
                width: 50px;
                height: 50px;
                font-size: 1.5em;
            }
        }

        @media (max-width: 500px) {
            .process-container {
                max-height: 700px;
                width: 95%;
            }

            .content h1 {
                font-size: 1.5em;
            }

            .content h2 {
                font-size: 1.2em;
            }

            .step:after {
                width: 20px;
                height: 20px;
                font-size: 0.6em;
            }
        }

        @media (max-width: 400px) {
            .process-container {
                max-height: 750px;
            }
        }

        .step-by-step {
            padding-bottom: 35px;
        }

        @media (min-width:768px) and (max-width:991px) {
            .process-section {
                overflow: hidden !important;
            }

            .process-section {
                padding-bottom: 30px;
            }

            .process-section .slide-btn-box {
                bottom: 0;
            }
        }

        .swiper-button-next,
        .swiper-button-prev {
            background-image: none;
            background-color: #373536;
            border-radius: 60px;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;

        }

        /* .content-h{
            height: auto;
        } */