.split-section .info-box {
    gap: 100px;
}

.split-section .info-panel {
    width: 49%;
    padding: 40px 59px 57px 40px;
}

.split-section .info-panel .info-panel__white-bg-box .info-panel__item:last-child {
    margin-bottom: 0px !important;
    padding-bottom: 0px !important;
}

.split-section .info-item {
    margin-bottom: 25px;
}

.split-section .info-panel__content ul {
    margin-bottom: 0px;
}

.split-section .info-panel__list .info-panel__list-item {
    padding-left: 42px;
}

.split-section .info-panel__list .info-panel__list-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2.5px;
    width: 28px;
    height: 28px;
    background-image: url('<?php echo get_template_directory_uri(); ?>/assets/images/Tick-mark.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

.split-section .details-panel {
    width: 44%;
}

.split-section .details-content--box {
    margin: 30px 0 45px 0;

    a {
        color: rgba(var(--text-color-1));

        &:hover {
            color: rgba(var(--text-color-6));
        }
    }
}

/* section bg color beige  */
.split-section__bg--beige .details-heading,
.split-section__bg--beige .details-content--box {
    color: rgba(var(--text-color-2));

    a {
        color: rgba(var(--text-color-2));

        &:hover {
            color: rgba(var(--text-color-6));
        }

    }
}

/* section bg color beige End */

/* white box img css  */
.split-section .info-panel:has(.white-box__img) {
    padding: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 1200px) {
    .split-section .info-box {
        gap: 50px;
    }
}

@media (max-width: 991px) {
    .split-section .info-panel,
    .split-section .details-panel {
        width: 100%;
        /* max-width: 100%; */
    }

    .split-section .info-panel .white-box__img {
        max-width: 650px;
    }
}

@media (max-width: 767px) {
    .split-section .info-box {
        gap: 36px;
    }

    .split-section .info-panel {
        padding: 40px 30px 60px;
    }
}