/*
Version: 1.0 
*/

.slider {
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    overflow: hidden;
    height: 100lvh;
}


/** OVERLAY **/
.slider .overlay {
    width: 100%;
    height: 100lvh;
    position: absolute;
    display: grid;
    grid-template-columns: 5% 90% 5%;
    justify-items: stretch;
    padding: 0% 1%;
    z-index: 5;
}

.slider .left-controls {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    z-index: 6;
}

.slider .right-controls {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    z-index: 6;
}

.slider .arrow-container {
    display: flex;
    background-color: rgba(0, 0, 0, 0.24);
    cursor: pointer;
    border-radius: 100%;
    overflow: hidden;
    padding: 15px;
}

.slider .left-controls .arrow {
    transform: translate(21%) rotate(45deg);
}

.right-controls .arrow {
    transform: translate(-25%) rotate(225deg);
}

.slider .arrow {
    width: 15px;
    height: 15px;
    color: rgb(255, 255, 255);
    border-bottom: 2px solid;
    border-left: 2px solid;
}

.slider .text-container {
    display: flex;
    justify-content: center;
}

.slider .page-top-text {
    text-align: center;
    /* padding: 5% 5% 0% 5%; */
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    width: 100%;
    height: 100vh;
    justify-content: center;
    background: linear-gradient(45deg, #00000096, #00000096);
}

.slider .button-top {
    color: #ffffff;
    font-size: 20pt;
    border-bottom: solid 1px #ffff !important;
    bottom: 3%;
    position: absolute;
    justify-self: anchor-center;
    cursor: pointer;
}

.slider .button-top a {
    text-wrap: nowrap;
    color: #FFF;
    border: none !important;
    text-decoration: none !important;
}

/** Suggested Text Styling 
.slider .page-top-text h3 {
    text-transform: uppercase;
    color: rgb(232, 224, 194) !important;
    font-size: 22pt;
}

.slider .page-top-text h1 {
    color: #FFF;
    font-weight: 100;
} **/


/** CAROUSEL **/

.slider .page-top-carousel {
    width: 100%;
    height: 100lvh;
    position: relative;
}

.slider .carousel-container {
    height: 100lvh;
    display: flex;
}


.slider .carousel-inner {
    height: var(--home-carousel-height);
    border: solid 1px;
    overflow: hidden;
    width: 100%;
}

.slider .carousel-item {
    height: 100%;
    display: none;
    align-items: center;
}

.slider .carousel-item p {
    display: flex;
    width: 100%;
    height: 100%;
    margin-bottom: 0%;
}

.slider .carousel-item img {
    min-width: 100%;
    min-height: 100%;
    max-width: 200%;
    max-height: 200%;
    height: 100%;
    object-fit: cover;
}
