     /* ------------------- */
        .position-relative {
            position: relative !important;
        }


        .justify-content-around {
            justify-content: space-around !important;
        }

        .justify-content-center {
            justify-content: center !important;
        }


        .align-items-center {
            align-items: center !important;
        }

        /* ---------------------- */

        .default-text {
            font-size: 16px;
            font-weight: 800;
        }

        .primary-color {
            color: #6366f1
        }

        h1 {
            font-size: 68px;
            font-weight: 800;
        }


        .comparision-container {
            width: 100%;
            max-width: 900px;
            overflow: hidden;
            margin: 0 auto;
        }


        .main-image-box {
            position: relative;
            width: 50%;
            height: 260px;
        }

        .main-image-box img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            bottom: -19px;
        }

        .content-wrapper {
            background: #edf2f8;
            padding: 10px;
            overflow: hidden;
            position: relative;
        }

        .content-box:first-child::after {
            content: "";
            position: absolute;
            width: 4px;
            background: #e6ebef;
            height: calc(100% + 30px);
            top: -10px;
            right: -2px;
        }

        .content-wrapper-list:nth-child(odd) {
            background-color: #fff;
        }

        .content-box {
            flex: 0 0 50%;
            padding: 20px 25px;
            position: relative;
            gap: 16px;
            display: flex;
            align-items: flex-start;
            font-size: 18px;
        }

        .content-box img {
            padding-top: 5px;
        }

        .bg-shadow {
            position: absolute;
            bottom: -4px;
            z-index: -1;
            width: 100%;
        }

        .bg-shadow img {
            width: 100%;
            height: 81px;
        }
