/* ============================================
   Inside The Timeline Section - CSS
   ============================================ */

.inside-the-timeline-section  {
    overflow: hidden;
}

/* Wrapper */
.inside-the-timeline-section .timeline__wrapper {
    display: flex;
    align-items: center;
    gap: 0;
    justify-content: space-between;
}

/* Left Content */
.inside-the-timeline-section .timeline__content {
    width: 100%;
    max-width: calc(40% - 3.2rem);
    position: relative;
    z-index: 6;
}
.inside-the-timeline-section .timeline__slider {
    width: 100%;
    max-width: calc(60% - 3.2rem);
    position: relative;
}

.inside-the-timeline-section .timeline__slider::before {
    content: '';
    position: absolute;
    top: 0;
    right: 100%;
    bottom: 0;
    width: 50vw;
    height: 100%;
    background-color: var(--color-secondary-black);
    z-index: 5;
}

.inside-the-timeline-section .section__header {
    text-align: left;
    align-items: flex-start;
    margin-bottom: 4.4rem;
}

/* Slider Navigation */
.inside-the-timeline-section .timeline__nav {
    display: flex;
    align-items: center;
    gap: 1.6rem;
}

.inside-the-timeline-section .timeline__nav-btn {
    width: 3.2rem;
    height: 3.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: 1px solid var(--color-primary);
    border-radius: 50%;
    color: var(--color-white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.inside-the-timeline-section .timeline__nav-btn:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.inside-the-timeline-section .timeline__nav-btn svg {
    width: 2rem;
    height: 2rem;
}

/* Right Slider */
.inside-the-timeline-section .timeline__slider {
    width: 100%;
}

.inside-the-timeline-section .timeline__carousel {
    width: 100%;
}

.inside-the-timeline-section .timeline__slide {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1.4rem;
    overflow: hidden;
    border: solid 1px var(--color-white);
}

.inside-the-timeline-section .timeline__slide img {
    width: 100%;
    height: auto;
}

/* Owl Carousel Overrides */
.inside-the-timeline-section .owl-stage-outer {
    overflow: visible;
}

.inside-the-timeline-section .owl-item {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.inside-the-timeline-section .owl-item.active {
    opacity: 1;
}

/* ============================================
   Inside The Timeline Section - Responsive CSS
   ============================================ */

@media (max-width: 1599px) {
    
}

@media (max-width: 1439px) {
    
}

@media (max-width: 1199px) {
    .inside-the-timeline-section .section__header {
        margin-bottom: 3.2rem;
    }
}

@media (max-width: 991px) {
    .inside-the-timeline-section .section__header {
        text-align: center;
        align-items: center;
        margin-bottom: 2rem;
    }
    .inside-the-timeline-section .timeline__wrapper {
        flex-direction: column;
        gap: 2rem;
    }
    .inside-the-timeline-section .timeline__content {
        max-width: 100%;
        text-align: center;
    }
    .inside-the-timeline-section .timeline__slider::before {
        display: none;
    }
    .inside-the-timeline-section .timeline__slider {
        max-width: 100%;
    }
    .inside-the-timeline-section .timeline__nav {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .inside-the-timeline-section .timeline__wrapper {
        gap: 3rem;
    }
    .inside-the-timeline-section .timeline__nav-btn {
        width: 3rem;
        height: 3rem;
    }
    .inside-the-timeline-section .timeline__nav-btn svg {
        width: 1.8rem;
        height: 1.8rem;
    }
    .inside-the-timeline-section .timeline__slide {
        padding: 0 0.5rem;
    }
}

@media (max-width: 576px) {
    .inside-the-timeline-section .timeline__wrapper {
        gap: 2.4rem;
    }
}

