﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}


.slider_container {
    position: relative;
    width: 100%;
    top:0;
    max-height:auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
    margin: 0 auto;
}

/*.slider_container {
    width: 100%;
    min-width: 50rem;
    max-width: 1000px;*/ /* Adjust max-width as needed */
    /*overflow: hidden;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    margin: 0 auto;*/ /* Center the slider horizontally */
/*}*/

.slider {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  /*  animation: 50s cubic-bezier(1, 0.95, 0.565,1) sliding infinite;*/
}

.slide {
    position: relative;
    min-width: 100%;
    height: 100%;
}

    .slide img {
        width: 100%;
        height: 100%;
    }

    .slide .caption {
        position: absolute;
        height: auto;
        width: auto;
        left: 0;
        bottom: 10%;
        font-size: 2vw;
        font-weight: 100;
        color: white;
        text-transform: capitalize;
        background: rgba(0, 0, 0, 0.348);
        backdrop-filter: blur(10px);
        padding: 1rem 5rem;
        border-radius: 0 2rem 2rem 0;
        word-wrap: break-word;
    }
    .slide p {
       font-size:1vw;
    }

   
