.container{
    width: 100%;
    height: auto;
    /*min-width: auto;
    min-height: auto;*/
    padding: 0;
    margin: auto;
    position: relative;  
    background-color: transparent;
    margin-bottom: 16rem;
}
.slider-wrapper{
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    min-width: auto;
    min-height: auto;
    background-color: #000;
    overflow: hidden;
}
.slider{
    display: flex;
    aspect-ratio: 16/9;
    width: 100%;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    transition: transform 0.3 ease;
    overflow: hidden;
    /*overflow-x: scroll;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;*/
}
.slider img{
    opacity: 1; 
    object-fit: cover;
    flex-grow: 1 0 100%;
    scroll-snap-align: center;
    user-select: none;
    pointer-events: none;
    flex-shrink: 0;
    position: absolute;
    animation: fadeImg 50s ease-in-out infinite alternate;
}
.slider img:nth-of-type(1){
    animation-delay: 10s;
}
.slider img:nth-of-type(2){
    animation-delay: 20s;
}
.slider img:nth-of-type(3){
    animation-delay: 30s;
}
.slider img:nth-of-type(4){
    animation-delay: 40s;
}
.overlay{
    background-color: rgba(0, 0, 0, 0.50);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 100;
}
.img-desc{
    width: calc(45/100*100vw);
    height: calc(14/100*100vw);
    /*width: 45%;
    height: 25%;*/
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 140;
    position: absolute;
    top: 59%;
    border-bottom-right-radius: 1.5rem;
    border-top-right-radius: 1.5rem;
    backdrop-filter: blur(0.2px);
    overflow: hidden;
    padding-left: 0.6rem;
    padding-right: 1.3rem;
    padding-bottom: 0.4rem;
}
.desc-container{
    width: 100%;
    height: 100%;
    position: relative;
    display: block;
}
.text{
    opacity: 1;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    background-color: transparent;
    animation: secFade 120s ease-in-out infinite;
}
.img-desc .desc-container .text h4{
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color: #fff;
    text-align: justify;
    font-size: calc(1.3/100*100vw);
}
.img-desc .desc-container .text p{
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color: #fff;
    text-align: justify;
    font-size: calc(1.2/100*100vw);
}
.wrapper{
    width: 100%;
    height: 100%;
    z-index: 5;
    margin-left: auto;
    margin-right: auto;
}
/*.banner{
    width: 100%;
    height: fit-content;
    z-index: -8;
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    left: 60%;
    top: 30%;
    animation: 1.5s ease-out 0s 1 popUp;
}
#anim-edges{
    width: 100%;
    height: 100%;
}
#bottom-right{
    display: block;
    z-index: 0;
    animation: 1.5s ease-out 0s 1 popUp;
    margin-left: auto;
    margin-right: auto;
}*/