.split-section {
    min-height: max-content;

}

.slider_content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
    padding: 100px 0;
    overflow: hidden;

}

.carousel-inner {
    height: 500px;
    width: 500px;
    overflow: hidden;
}

.carousel-item {
    height: 100%;
    width: 100%;
    border-radius: 10px;
    margin: 0 auto;
}

.carousel-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.text-box {
    width: 50%;
}

.text-box h2 {
    font-size: 32px;
    margin-bottom: 18px;
    color: var(--bg-color);
}

.text-box p {
    color: var(--second-color);
    font-size: 18px;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 900px) {
    .slider_content {
        flex-direction: column;
        text-align: center;
    }

    .slider-box,
    .text-box {
        width: 100%;
    }

    .slide-img {
        height: 280px;
    }
}