/*scrolling-hero v1.0.0*/
.tc-scrolling-hero {
    position: relative;
    z-index: 900;
    height: fit-content;
    min-height: var(--tc-scrolling-hero-section-height);
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.tc-scrolling-hero-image-container {
    position: absolute;
    z-index: 900;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    pointer-events: none;
    overflow: hidden;
}
.tc-scrolling-hero-slide {
    position: absolute;
    z-index: -1;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    transform: translateX(100%);
    transition: all 1s ease;
}
.tc-scrolling-hero-slide[data-prev] {
    z-index: -1;
    transform: translateX(0%);
}
/* .tc-scrolling-hero-slide[data-next] {
    z-index: 900;
} */
.tc-scrolling-hero-slide[data-active] {
    z-index: 900;
    transform: translateX(0%);
}

.tc-scrolling-hero-image-overlay {
    position: absolute;
    z-index: 902;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--tc-scrolling-hero-overlay-color);
}

.tc-scrolling-hero-content-container {
    position: absolute;
    z-index: 904;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}