.banner {
    background-color: var(--background_white);
    height: 100vh;
    overflow: hidden;
    width: 100%;
    margin: auto;
}

.caurasel_wrapper {
    position: relative;
    display: flex;
    /* Make the wrapper a flex container */
    overflow: hidden;
    /* Hide overflow content */
    height: 100%;
    background-image: url(../img/pexels-daniel-putzer-633409.jpg);
    background-position: bottom;
    background-attachment: fixed;
    background-size: cover;
    transform: scale(1.1);
    /* opacity: 0; */
    transition: transform 1s ease-out;
}

.banner_video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner_video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.slider {
    position: absolute;
    top: 0%;
    left: 0%;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    /* transform: translate(-50%, -50%); */
    display: flex;
    /* Make the slider a flex container */
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.349);
    z-index: 200;
    padding: 50px;
}

.promo-text {
    width: 60%;
    justify-content: center;
    color: white;
    font-size: larger;
    font-weight: lighter;
    font-family: 'Montserrat', 'Arial', sans-serif;
    text-align: center;
    text-shadow: 2px 2px 10px black;

    transition: opacity 2s ease-in-out;

}

.promo-text h1 {
    font-size: 50px;
}

.promo-text h3 span {
    opacity: 0;
    transition: opacity 1000ms ease-out;
}

a {
    font-weight: bold;
}

.promo-text a {
    text-decoration: none;
    color: white;
    background-color: var(--background_blue);
    padding: 5px 50px;
    margin-top: 10px;
    transition: 0.5s;
    font-weight: bold;
    border-radius: 20px;
}

.promo-text a:hover {
    color: var(--text_white);

    background-color: var(--background_white_blue);
}

.banner_text {
    height: 55px;
    /* border: var(--border); */
    overflow: hidden;
}

.banner_text h1 {
    /* background-color: aqua; */
    transform: translateY(55px);
    transition: transform 1000ms ease-in-out;
}

.banner_text h1.banner_text_in_view {
    transform: translateY(0);
}