
        .mxc-wrapper {
            max-width: 1440px;
            margin: 0 auto;
        }
        .mxc-container {
            width: 100%;
            height: 100%;
            background-color: transparent;
            display: flex;
            margin-left: -20px;
            margin-right: -20px;
            align-items: center;
        }
        .mxc-item {
            padding-left: 20px;
            padding-right: 20px;
            flex: 0 0 50%;
            max-width: 50%;
        }
        .mxc-image {
            position: relative;
            padding-top: 100%;
        }
        .mxc-image img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .mxc-title {
            font-size: 24px;
            font-weight: 600;
            margin-top: 0;
            margin-bottom: 40px;
            text-align: start;
        }
        .mxc-list {
            list-style: none;
            padding: 0;
            margin: 0;
            color: #666;
            font-size: 16px;
        }
        .mxc-list-item {
            margin-bottom: 16px;
            display: flex;
            align-items: center;
        }
        .mxc-list-item-start {
            align-items: start;
            line-height: 20px;
        }
        .mxc-list-item-start-label {
            display: flex;
            align-items: center;
            margin-right: 10px;
        }
            
        .mxc-list-item-icon {
            display: inline-block;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background-color: #000;
            color: #fff;
            margin-right: 10px;
        }

        @media screen and (max-width: 959px) {
            .mxc-wrapper {
                margin-left: 20px;
                margin-right: 20px;
            }
            .mxc-container {
                margin-left: 0;
                margin-right: 0;
                flex-direction: column;
            }
            .mxc-item {
                padding-left: 0;
                padding-right: 0;
                flex: 0 0 100%;
                max-width: 100%;
                width: 100%;
            }
            .mxc-title {
                text-align: center;
            }
            /* .mxc-list {
                display: flex;
                flex-direction: column;
                align-items: center;
            } */
        }
            
    