/* Timeline Slider Styles */
.mt-timeline-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.mt-timeline-slider::before,
.mt-timeline-slider::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 400px;
    height: 100%;
    background: linear-gradient(270deg, rgba(9, 43, 56, 1) 0%, rgba(9, 43, 56, 0) 100%);
    transform: rotate(180deg);
    z-index: 9;
}

.mt-timeline-slider::after {
    top: 0;
    right: 0;
    left: auto;
    transform: rotate(0deg);
}

.mt-timeline-slider__slide {
    position: relative;
    overflow: hidden;
}

.mt-timeline-slider__image {
    width: 100%;
    object-position: center;
    display: block;
    position: relative;
}

.mt-timeline-slider__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(9, 43, 56, 0) 0%,
        rgba(9, 43, 56, 0) 50%,
        rgba(9, 43, 56, 0.5) 100%
    );
    z-index: 2;
}

.mt-timeline-slider__container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.mt-timeline-slider__content {
    text-align: center;
    max-width: 1000px;
}

.mt-timeline-slider__year {
    position: relative;
    z-index: 5;
}

.mt-timeline-slider__title {
    position: relative;
    z-index: 4;
}

.mt-timeline-slider__title span,
.mt-timeline-slider__description span {
    color: var(--e-global-color-accent);
}

.mt-timeline-slider__quote{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 50px;
}

.mt-timeline-slider__quote blockquote {
    margin: 0;
    position: relative;
}

.mt-timeline-slider__quote-author {
    display: block;
}

@media screen and (max-width: 1024px) {
    .mt-timeline-slider__quote{
        padding-bottom: 15px;
    }
}

@media screen and (max-width: 767px) {
    .mt-timeline-slider__quote{
        padding-bottom: 35px;
    }
}

/* Navigation styles */
.mt-timeline-slider__nav {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 10;
    pointer-events: none;
}

.mt-timeline-slider__nav .swiper-button-next,
.mt-timeline-slider__nav .swiper-button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s ease;
}

.mt-timeline-slider__nav .swiper-button-next:hover,
.mt-timeline-slider__nav .swiper-button-prev:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.mt-timeline-slider__nav .swiper-button-prev {
    left: 0;
}

.mt-timeline-slider__nav .swiper-button-next {
    right: 0;
}

.mt-timeline-slider__nav svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.mt-timeline-slider__nav .swiper-button-next::after,
.mt-timeline-slider__nav .swiper-button-prev::after {
	content: "";
	display: block;
	width: 15px;
	height: 22px;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}

.mt-timeline-slider__nav .swiper-button-prev::after {
  	background-image: url("data:image/svg+xml,%3Csvg width='15' height='22' viewBox='0 0 15 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.34615 11L10.6538 2.36' stroke='white' stroke-width='2' stroke-linecap='square'/%3E%3Cpath d='M10.6538 19.6401L2.34615 11.0001' stroke='white' stroke-width='2' stroke-linecap='square'/%3E%3C/svg%3E");
}

.mt-timeline-slider__nav .swiper-button-next::after {
  	background-image: url("data:image/svg+xml,%3Csvg width='15' height='22' viewBox='0 0 15 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.6538 11L4.34615 2.36' stroke='white' stroke-width='2' stroke-linecap='square'/%3E%3Cpath d='M4.34615 19.6401L12.6538 11.0001' stroke='white' stroke-width='2' stroke-linecap='square'/%3E%3C/svg%3E");
}

/* Video Type */
.mt-timeline-slider__video {
    position: relative;
}

.mt-timeline-slider__play-button {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: 0 auto;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: auto;
    cursor: pointer;
    border: 0;
    padding: 5px !important;
}

.mt-timeline-slider__play-button span {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 1200px) {

    .mt-timeline-slider::before,
    .mt-timeline-slider::after {
        width: 300px;
    }

    .mt-timeline-slider::after{
        right: -10px;
    }

    .mt-timeline-slider::before{
        left: -10px;
    }
}

@media screen and (max-width: 992px) {

    .mt-timeline-slider::before,
    .mt-timeline-slider::after {
        width: 100px;
    }
}

@media screen and (max-width: 767px) {
    .mt-timeline-slider__nav {
        width: 100% !important;
    }

    .mt-timeline-slider__nav .swiper-button-prev {
        left: 20px;
    }

    .mt-timeline-slider__nav .swiper-button-next {
        right: 20px;
    }

    .mt-timeline-slider__nav .swiper-button-next::after,
    .mt-timeline-slider__nav .swiper-button-prev::after {
        font-size: 20px;
    }

    .mt-timeline-slider::before,
    .mt-timeline-slider::after {
        width: 40px;
    }

    .mt-timeline-slider::before{
        left: -5px;
    }

    .mt-timeline-slider::after{
        right: -5px;
    }

    .mt-timeline-slider__quote{
        padding-inline: 20px;
    }
}