/* Global Styles */
html, body {
    height: 100%;
}

/* Overview Styles */
.overview {
    width: 100%;
    height: 100%;
}

/* Overview Slides Styles */
.overview-overlay {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0));
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.overview-slides {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.overview-slides, .carousel-item, .active {
    height: 100%;
}

.overview-slides .carousel-inner {
    height: 100%;
}

.carousel-item img {
    object-fit: cover;
    align-content: center;
    height: 300px;
    width: 350px;
}

/* Overview Indicator Styles */
.overview-indicators {
    bottom: 2.6vh;
}

.overview-indicators .indicator {
    border-top-width: 16px !important;
    height: 5px !important;
    width: calc(8% + 42px) !important;
    transition: all 0.4s ease-out !important;
}

.overview-indicators .indicator:hover {
    width: calc(9.5% + 52px) !important;
    opacity: 0.7 !important;
}

.overview-indicators .active {
    background-color: #fff !important;
}

.overview-indicators .active:hover {
    width: calc(9.5% + 52px) !important;
    opacity: 1 !important;
}

/* Overview Title Styles */
.title-container {
    width: 100%;
    height: calc(15vh + 2.4vw);
    display: flex;
    position: relative;
    overflow: hidden;
    vertical-align: bottom;
    z-index: 3;
}

.title-text {
    bottom: 6px;
    left: 0;
    align-self: end;
    font-size: calc(3.5vh + 2.8vw);
    position: absolute;
    transition: bottom 1s, visibility 1s;
}

.title-hidden {
    color: transparent;
}

.title-hidden-top {
    bottom: calc(15vh + 2.4vw);
    visibility: hidden;
}

.title-hidden-bottom {
    bottom: calc(-15vh - 2.4vw);
    visibility: hidden;
}

/* Overview Text Styles */
.description {
}

/* Overview Button Styles */
.overview-button {
    font-weight: bold;
    white-space: nowrap;
}

/* Content Styles */
.content-main {
    margin-top: 100px;
}

/* Media Queries */
@media all and (max-width: 280px) {
    .overview-indicators {
        visibility: hidden;
    }
}